Prepare for Spring 2025.

This commit is contained in:
Janggun Lee
2025-02-24 17:31:17 +09:00
parent a8e0aa5e69
commit fad9d02fea
53 changed files with 3442 additions and 1679 deletions

9
examples/c/lost_copy.c Normal file
View File

@@ -0,0 +1,9 @@
int main() {
int i = 0;
int result = 0;
do {
result = i;
i++;
} while (i < 4);
return result;
}

10
examples/c/swap.c Normal file
View File

@@ -0,0 +1,10 @@
int main() {
int a = 1;
int b = 2;
do {
int t = a;
a = b;
b = t;
} while (b == 1);
return a * 10 + b;
}