重拾C++,第一个程序

好久没用C++了,今天下载个Dev-C++编译器,写了第一个程序。

F9: 编译

F10:运行

F5:  Debug


LINUX下,

$ gcc -v              //查看gcc版本,有没有安装,默认都安装了

Using built-in specs.
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --disable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux
Thread model: posix
gcc version 4.1.2 20080704 (Red Hat 4.1.2-54)
$ touch hello.c       //建新文件hello.c

$ chmod +x ./hello.c  //赋予文件可执行的权限

$ cat hello.c         //假如文件名为hello.c

#include <stdio.h> //是预处理器指令,告诉C编译器在实际编译之前要包含stdio.h文件

int main()                        //主程序,程序从此入口
{
    /*This is First C language*/  //注释部分
    printf("Hello,World! \n");    //printf语句,分号结束
    return 0;                     //终止main主函数,并返回0
}
gcc hello.c          //编译文件,-o hello.out 指定输出文件名 

$ ls -lart             //编译后默认生成a.out文件
total 20
drwx------ 7 root root 4096 Sep 30 16:45 ..
-rwxr-xr-x 1 root root   80 Sep 30 16:47 hello.c
-rwxr-xr-x 1 root root 6703 Sep 30 16:47 a.out
drwxr-xr-x 2 root root 4096 Sep 30 16:47 .
$ ./a.out              //运行后,输出结果

Hello,World!


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值