8 lines
81 B
C
8 lines
81 B
C
int global1;
|
|
|
|
int main() {
|
|
global1 = 42;
|
|
printf("%d\n", global1);
|
|
return 0;
|
|
}
|