9 lines
108 B
C++
9 lines
108 B
C++
#include <stdio.h>
|
|
|
|
void exported_from_c();
|
|
|
|
int main() {
|
|
printf("Hello World\n");
|
|
exported_from_c();
|
|
}
|