C Program For Find the Length of a String

Ram Pothuraju
#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

Post a Comment

0Comments

Post a Comment (0)