0
9.2kviews
Explain any three string standard library functions.
1 Answer
0
386views

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 …

Create a free account to keep reading this post.

and 3 others joined a min ago.

Please log in to add an answer.