0
9.2kviews
Explain any three string standard library functions.
1 Answer
| written 9.3 years ago by |
I) strlen(string):
The length of string is equal to the number of characters present in the string, excluding null characters. In short it finds the length of strings.
Example:
Char str[20] = “John Terry”;
Int n;
N = strlen(str);
II) strcopy(string1, string2):
String 2 is copied to string 1. String …