main.c
#include <stdio.h> int main(int argc, char **argv) { printf("Hello, world!\n"); return 0; }
編譯、執行
$ gcc main.c -o main $ ./main Hello, world!