touch abc.c open abc.c cc -c abc.c cc abc.o ./a.out
#include<stdio.h> int main(void) { /*下面要输出hello world*/ printf("hello world\n"); return 0; } // gcc -o helloworld helloworld.c