Pages

Sunday 20 May 2012

program to print a String and find out of its total Character


91./*Write a program to print a String and find out of its total Character*/

#include<stdio.h>
#include<conio.h>
main()
{
            char a[20];
            int j;
            clrscr();
            printf("Enter a string:");
            gets(a);
            for(j=0;a[j]!='\0';j++);
            {
             printf("\nTotal char=%d",j);
             }
             getch();
 }

OUTPUT
            Enter a string: TEJKUMAR SAHARAN
            Total char = 15

No comments:

Post a Comment