好久没用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!