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

View file

@ -12,10 +12,5 @@ int main() {
printf("char: %zu bytes\n", sizeof(char));
char ch = 'A';
printf("\n%c %d", ch, ch);
ch += 32;
printf("\n%c %d", ch, ch);
return 0;
}