6 lines
98 B
Plaintext
6 lines
98 B
Plaintext
|
int :: printf(char* format);
|
||
|
|
||
|
int :: main () {
|
||
|
printf("%s\r\n", "hi there");
|
||
|
return (0);
|
||
|
}
|