编译 : gcc hello.c -o hello函数
gcc hello.c -o hello
运行 : ./hello.outcode
./hello.out
C99 标准中main函数返回必须为int型,而不是void型。编译