This commit is contained in:
암냥 2026-03-17 10:09:14 +09:00
commit 4e8af7e835
12 changed files with 79 additions and 2 deletions

8
02/02_24.c Normal file
View file

@ -0,0 +1,8 @@
#include <stdio.h>
#define TMP 20
int main() {
printf("TMP: %d\n", TMP);
// TMP = 10;
return 0;
}