This commit is contained in:
암냥 2026-03-31 09:16:35 +09:00
commit 7f76e58e1e
No known key found for this signature in database
10 changed files with 150 additions and 5 deletions

11
02/02_55p.c Normal file
View 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;
}