String Program3

 #include<stdio.h>

#include<conio.h>


void main()

{

char ch[97];

clrscr();


printf("Enter string: ");

scanf("%s", ch);


printf("\n\nYou have entered String: %s", ch);


getch();

}

No comments:

Post a Comment