c-compiler/test.c
2026-04-09 17:14:58 +03:00

5 lines
55 B
C

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