//In the Name of ALLAH //This program discovers the ASCII Codes. #include #include void main() { int a; clrscr(); printf("Enter a key please:\n"); a=getche(); printf("\nThe ASCII code is: %d",a); getch(); }