Compiling, Linking and Building C/C++ Applications
首先写一段C代码,如下:#includeintmain(){printf("Hello,world\n");return0;}编译代码gcchello.c默认生成一个a.out的文件,然后执行./a.out,就打印出Hello,world如果想要特殊的输入文件可以先执行:gcc-ohellohello.c分开编译和链接的操作-c只进行编译gcc-c-ghello.c-o进行链接操作,生成可执行文件