//In the Name of ALLAH //This program discovers the ASCII Codes. //This program is written by Mr. Mohammadali Fath-Ali. //Comments by H.Mehrjoo #include #include void main () { char a; int b; clrscr(); printf("press any key\n"); scanf("%c",&a); b=a; printf("code %c = %d",a,b); getch(); }