10 líneas
153 B
C
10 líneas
153 B
C
// Example C programs for testing
|
|
|
|
// examples/hello.c
|
|
int printf(const char* format, ...);
|
|
|
|
int main() {
|
|
printf("Hello, World!\n");
|
|
return 0;
|
|
}
|