Full form of strlen *
Answers
Answered by
0
Answer:
The C library function size_t strlen(const char *str) computes the length of the string str up to, but not including the terminating null character.
Hope it helps you
Mark me Brainliest plz
Answered by
0
The strlen () function calculates the length of a given string. The strlen () function takes a string as an argument and returns its length. The returned value is of type long int. It is defined in the <string.h> header file. Note that the strlen () function doesn't count the null character \0 while calculating the length.
Thanks me
Mark me as brainliest :-)
Rate my answers ;)
Similar questions