Computer Science, asked by kumariakansha8254, 5 days ago

write the program to calculate the number of letters in a world​

Answers

Answered by sandeshbasyal0901
1

Answer:

Explanation:

#include<stdio.h>

#include<conio.h>

#include<string.h>

int main()

{

char string[30];int l;

printf("enter word or sentences\n");

gets(string);

l=strlen(string);

printf("the length is %d",l);

getch();

}

Similar questions