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

17
02/02_68p.c Normal file
View file

@ -0,0 +1,17 @@
#include <stdio.h>
#include <string.h>
int main() {
int a = 1;
int b = 2;
printf("a: %d b: %d\n", a, b);
int temp = a;
a = b;
b = temp;
printf("a: %d b: %d", a, b);
return 0;
}