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