码迷,mamicode.com
首页 > 其他好文 > 详细

MinGW的下载和环境配置

时间:2016-01-23 21:26:19      阅读:175      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!