//Unformatted functions
#include<stdio.h>
// #include<conio.h>
#include<math.h>
int main()
{
//char c1[10];
// printf("\nEnter a string : ");
// //scanf("%s",&c1);
// //gets(c1);
// printf("\n\nstr = ");
// puts(c1);
char c;
printf("\nEnter a char : ");
//scanf("%c",&c);
c=getche();
//c=getch();
//c=getchar();
printf("\nc = ");
//putch(c);
putchar(c);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: