2020-05-23 11:22:23 +02:00

8 lines
81 B
C

int global1;
int main() {
global1 = 42;
printf("%d\n", global1);
return 0;
}