24种编程语言的Hello World程序(2)


Configured with: ../gcc-3.4.5-20060117-3/configure --with-gcc --with-gnu-ld --with-gnu-as --host=min 
gw32 --target=mingw32 --prefix=/mingw --enable-threads --disable-nls --enable-languages=c,c++,f77,ad 
a,objc,java --disable-win32-registry --disable-shared --enable-sjlj-exceptions --enable-libgcj --dis 
able-java-awt --without-x --enable-java-gc=boehm --disable-libgcj-debug --enable-interpreter --enabl 
e-hash-synchronization --enable-libstdcxx-debug 
Thread model: win32 
gcc version 3.4.5 (mingw-vista special r3) 

代码:
复制代码 代码如下:

#include <stdio.h> 
int main()                #main入口函数 

  printf("Hello,World!"); #printf函数打印 
  return 1;               #函数返回值 


说明:
复制代码 代码如下:

D:\HelloWorld>gcc HelloWorld.c -o output   #文件名HelloWorld.c, -o输出文件名:output 
HelloWorld.c:6:2: warning: no newline at end of file 
 
D:\HelloWorld>output                       #直接运行输出文件              
Hello,World!

复制代码 代码如下:

#如果未安装GCC,那么必须按照 http://gcc.gnu.org/install/上的详细说明安装GCC。 
#为了在 Windows上安装GCC,需要安装MinGW. 为了安装 MinGW,请访问MinGW的主页www.mingw.org, 
#进入MinGW下载页面,下载最新版本的 MinGW 安装程序,命名格式为 MinGW-<version>.exe   
#当安装 MinWG时,至少要安装gcc-core、gcc-g++、binutils和MinGW runtime,但是一般情况下都会安装更多其他的项。   
#添加您安装的 MinGW 的bin子目录到您的 PATH 环境变量中,这样您就可以在命令行中通过简单的名称来指定这些工具。   
#当完成安装时,就可以从Windows命令行上运行gcc、g++、ar、ranlib、dlltool和其他一些GNU工具。

03. C++

环境: MinGW 或 各种C++编译器
头文件后缀名:.h,      .hpp,   .hxx 
源文件后缀名:.cpp,   .c++,  .cxx, .cc, .C  
代码:

复制代码

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/1648.html