8 lines
87 B
C
8 lines
87 B
C
// example.c
|
|
#include <stdio.h>
|
|
|
|
void helloFromC() {
|
|
printf("Hello from C!\n");
|
|
}
|
|
|