命令编译和执行第一个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
本文标题:C语言程序设计 - 1.3.4 命令编译和执行
本文链接:https://www.haomeiwen.com/subject/czgkdctx.html
网友评论