(strlen(“India is great”) function will return _______ length of the string.)
Answers
Answered by
0
Answer:
// c program to demonstrate
// example of strlen() function.
#include<stdio.h>
#include <string.h>
int main()
{
char ch[]={'g', 'e', 'e', 'k', 's', '\0'};
printf("Length of string is: %d", strlen(ch));
return 0;
}
Similar questions