以下是第一个 C 语言程序,也是一切的开始。
#include <stdio.h> int main(int argc, char const *argv[]) { printf("Hello World!\n"); return 0; }