11 - String Handling Library
11 - String Handling Library
h)
The following are the commonly used string handling functions. To use these functions, include string.h
library in your program.
strcpy
strncpy
strcat
strncat
strcmp
strncmp
strlen
Exercise
Write a program that would match a string. It accepts two inputs: the phrase/sentence string (text) and
the pattern string (word). The program finds the first (or all) instances of the pattern in the text and
changes that word in all uppercase and displays its number of occurrences.
Sample Input:
Text string: You will always have my love, my love, for the love I love is as lovely as love itself.
Sample Output:
New text: You will always have my LOVE, my LOVE, for the LOVE I LOVE is as lovely as LOVE itself.
Number of occurrence: 5
Filename: stringmatch.c