#include <conio.h>
#include <iostream>
#include <cctype>
int main()
{
char A, C, B, D;
printf("Press a printable key >");
scanf("%c", &A);
printf("%c's integer equivalent is %d", A, (int) A);
while(A != '#');
printf("Press a printable key >");
scanf("%c", &C);
printf("%c's integer equivalent is %d\n", C, (int) C);
while(C != '#');
printf("Press a printable key >");
scanf("%c", &B)/>/>/>;
printf("%c's integer equivalent is %d", B, (int) B)/>/>/>;
while(B != '#');
printf("Press a printable key >");
scanf("%c", &D);
printf("%c's integer equivalent is %d", D, (int) D);
while(D != '#');
getch();
return(0);
}
Haha me again
Thanks for any help!
*** Edit ***
Please use code tags when posting code