首页 > 其他 > 详细

MinGW的下载和环境配置

时间:2016-01-23 21:24:52      阅读:349      评论:0      收藏:0      [点我收藏+]

1.在MinGW官网下载MinGW Installer

2.在安装界面勾选所需的组件,在右侧界面标记,在菜单栏Installation中选择Apply Change,等待安装技术分享

 

3.环境配置:在环境变量Path中,将MinGw的bin目录路径添加到Path中。

4.检验

1) 在C盘下新建一个helloworld.c文件,源代码如下: 

#include <stdio.h> 

main() { 
    printf ("Hello World!\n"); 
     
    return 0; 


2)编译。 
C:\>gcc -o helloworld.exe helloworld.c 

3)运行。 
C:\>helloworld.exe 
Hello World!This is my first c program! 

 

1) 在C盘下新建一个helloworld.cpp文件,源代码如下: 

#include <iostream> 

main() { 
    std::cout << "Hello world!This is my first c++ program!" << std::endl; 
     
    return 0; 


2)编译。 
C:\>g++ -o helloworld.exe helloworld.cpp 

3)运行。 
C:\>helloworld.exe 
Hello world!This is my first c++ program!

 

MinGW的下载和环境配置

原文:http://www.cnblogs.com/zlfly/p/5153957.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!