write the program to calculate the number of letters in a world
Answers
Answered by
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
Computer Science,
1 month ago
Biology,
1 month ago
English,
10 months ago
Computer Science,
10 months ago