PoplarYang
6/19/2019 - 11:35 AM

C 语言

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