helloworld_without_stdlib.c
· 87 B · C
Originalformat
int printf(const char* restrict, ...);
int main() {
printf("hello world\n");
}
| 1 | int printf(const char* restrict, ...); |
| 2 | |
| 3 | int main() { |
| 4 | printf("hello world\n"); |
| 5 | } |