C Program to Print Acsii Value of Given Number

C Program to Print Acsii Value of Given Number

#include
#include
void main()
{
char ch;
clrscr();
printf("enter any character");
scanf("%c",&ch);
printf("ch=%d",ch);
getch();
}



No comments:

Post a Comment