9 lines
90 B
C
9 lines
90 B
C
#include <stdio.h>
|
|
|
|
void f();
|
|
|
|
int main(void) {
|
|
printf("Hello from C!\n");
|
|
f();
|
|
}
|