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

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;
}