/* Prints the code for the letter 'A', and the character with code 64. Note: these will be ASCII codes only if the computer's internal codes are ASCII. */ #include main () { printf("Character %c has ASCII code %d.\n", 'A', 'A'); printf("ASCII code %d belongs to character %c.\n", 64, 64); }