8 lines
81 B
C
Raw Normal View History

2020-05-23 11:22:23 +02:00
int global1;
int main() {
global1 = 42;
printf("%d\n", global1);
return 0;
}