wow
This commit is contained in:
parent
14647b72e2
commit
7f76e58e1e
10 changed files with 150 additions and 5 deletions
11
02/02_55p.c
Normal file
11
02/02_55p.c
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
char str;
|
||||
printf("영문자 입력 : ");
|
||||
scanf("%c", &str);
|
||||
|
||||
printf("입력한 문자는 '%c'이고\n", str);
|
||||
printf("ASCII 코드 값은 %d입니다.\n", str);
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue