c c++ 在linux上编译

C语言编译:gcc[options] [filenames]

当不使用任何编译选项编译hello.c时,gcc将会自动编译产生一个a.out的可执行文件

vim test1.c

root@ubuntu-daisy:~/daisy# cat test1.c

#include<stdio.h>

int main(){

printf("helloxiujuan!\n");

}

gcc test1.c

linux会自动生成a.out 文件

./a.out

输出结果 hello Xiujuan

使用-o编译选择,可以为编译后的文件指定一个名:

root@ubuntu-daisy:~/daisy# ls

test1.c 

root@ubuntu-daisy:~/daisy# gcc test1.c -o hello

root@ubuntu-daisy:~/daisy# ls

hello  test1.c 

root@ubuntu-daisy:~/daisy# ./hello

Hello World!

 

C++ 编译:

 vim test2.cc

root@ubuntu-daisy:~/daisy# cat test2.cc

#include <iostream>

using namespace std;

int main(){

                 cout <<" hello world" <<endl;

g++ test2.cc

linux会自动生成a.out文件

./a.out

输出结果hello world





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值