조회 수 1067 추천 수 0 댓글 0

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main(void)
{
    char ch;
    ch=getch();
    printf("%d \n",ch);
    ch=getch();
    printf("%d \n",ch);    
    system("pause");
    return 0;
}