命令编译和执行第一个C程序:
编写c语言程序:
vi hello.c
#include "stdio.h"
int main(int argc, char const *argv[]){
printf("Hello\n");
return 0;
}
编译:
gcc hello.c
得到a.out
编译后的文件。
执行编译后的文件:
./a.out
命令编译和执行第一个C程序:
编写c语言程序:
vi hello.c
#include "stdio.h"
int main(int argc, char const *argv[]){
printf("Hello\n");
return 0;
}
编译:
gcc hello.c
得到a.out
编译后的文件。
执行编译后的文件:
./a.out