Question: c language :Which statement regarding the strlen() function in the following code snippet is false? char myString[] = Is this easy?; printf(%d , strlen(myString) );
c language :Which statement regarding the strlen() function in the following code snippet is false?
char myString[] = "Is this easy?";
printf("%d ", strlen(myString) );
The value returned in the index or subscript position of the NULL terminator is the string myString.
Determines the length of string myString.
Requires the
The number of characters preceding the terminating null character is returned.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
