|
Get 9,000+ Interview Questions with Answers in an eBook
C Source Codes List | Source Code Home
Program : Program to display the length of the entered string.
/* Prg. to display the length of the entered string */
#include
#include
void main()
{
int i,l=0;
char c;
clrscr();
printf("Please enter a string.");
printf("\nString will be terminated if you press Ctrl-Z.");
printf("\nSTRING:- ");
for (i=0;(c=getchar())!=EOF;i++)
l=l+1;
printf("Length of the entered string is %d",l);
printf("\n\n\n\n\n\t\t\tHAVE A NICE DAY! BYE.");
getch();
}
C Source Codes List | Source Code Home
|
|
|