c-compiler/test.c
2026-04-09 17:52:11 +03:00

5 lines
65 B
C

int main() {
int a = 5;
a = 15 + 20;
return a + 30;
}