Home Strings C Program For Find the Length of a String C Program For Find the Length of a String personRam Pothuraju October 11, 20160 minute read share #include <stdio.h> int main() { char s[1000], i; printf("Enter a string: "); scanf("%s", s); for(i = 0; s[i] != '\0'; ++i); printf("Length of string: %d", i); return 0; } Output Enter a string: Programiz Length of string: 9 Tags CC-ProgrammingLength of a StringProgramsStrings Facebook Twitter Whatsapp Newer Older