7 lines
102 B
C
7 lines
102 B
C
int printf(char* format, ...);
|
|
|
|
int gi = 42;
|
|
|
|
int main() {
|
|
printf("hello world %d\n", gi);
|
|
} |