linux下创建C项目、编译、运行
程序员文章站
2022-06-04 13:02:03
...
Step1: 建立文件夹,如 c
Step2: 新建一个.cpp文件,如pun.cpp
touch pun.cpp
Step3: 写源代码
#include <stdio.h>
int main(void)
{
printf("To C,or not to C:that is the question.\n");
return 0;
}
Step4: cd 进入该目录下
cd c
Step5: 编译文件,使用:gcc + -o +生成的可执行程序名+程序名.cpp gcc类似于编译VS ,-o:当前目录,生成可执行程序,即,类似于exe。
gcc -o pun pun.cpp
Step6:运行,进入目录下,并输入 ./可执行程序名
cd
./pun
结果为:
To C,or not to C:that is the question.
上一篇: 微信小程序 检测返回事件 左上角返回按钮
下一篇: 微信左上角返回监听