6 lines
107 B
C
6 lines
107 B
C
|
int printf(const char* format, ...);
|
||
|
|
||
|
int main() {
|
||
|
printf("hello world %d\n", 42);
|
||
|
return 0;
|
||
|
}
|