Ubuntu下运行C/C++程序

版权声明:本文为博主原创文章,转载请注明文章来源! https://blog.csdn.net/sunshinezhihuo/article/details/82141550

https://www.linuxidc.com/Linux/2014-05/101844.htm
https://my.oschina.net/hnuweiwei/blog/227276


1.准备工作

1.1 打开控制台:使用快捷键 Ctrl + Alt + T;

1.2 安装vim:输入 sudo apt-get install vim;

1.3 安装gcc:输入 sudo apt-get install g++。

2.编写hello.c源代码

2.1 新建文件名为hello.c的源文件:输入vim hello.c;

2.2 键入i 进入insert模式(即编辑输入模式),写入如下经典代码:

//the first program hello.c
#include<stdio.h>
int main(void)
{
printf("Hello, world!\n");
return 0;
}

2.3 输入完成后,Esc 回到normal模式,键入:wq 保存退出vim。

3.编译hello.c

在终端执行 g++ hello.c -o hello 编译。

4.运行程序hello

./hello 就看到结果:

Hello,world!


CPP

vim hello.cpp
g++ -o hellocpp hello.cpp
./hellocpp

然后就输出了结果。。。
888  ==== ok

猜你喜欢

转载自blog.csdn.net/sunshinezhihuo/article/details/82141550