String Program1

#include<stdio.h>

#include<conio.h>


void main()

{

char ch;

clrscr();


printf("Enter any character: ");

scanf("%c", &ch);


printf("\n\nYou have entered character %c", ch);


getch();

}

No comments:

Post a Comment