// .C のファイル #include <stdio.h> void hello(void){ printf("Hello, World.\n") ; } int main(int argc, char* argv[]) { hello() ; return 0 ; }