码迷,mamicode.com
首页 > Windows程序 > 详细

安装mingw后,在命令窗体编译c文件

时间:2017-07-29 16:34:15      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:load   nload   printf   tracking   download   manager   article   ack   get   

1、编译test.cpp文件


#include<iostream>
int main(int argc,char **argv)
{
  std::cout<<"hello"<<std::endl;
return(0);
}
2、在cmd模式下进入test.cpp文件夹


3、编译。将.cpp文件生成目标文件
g++ -c test.cpp


4、链接,将目标文件生成可运行文件
g++ -o test test.o


编译test.c文件


#include<stdio.h>
int main(int argc,char **argv)
{
  printf("hello");
return(0);
}
gcc -c test.c


gcc -o test test.o



在ccd 键入mingw-get 进入MinGW Installation Manager 窗体


 download and install the C compiler from the command line:  mingw-get install gcc

























安装mingw后,在命令窗体编译c文件

标签:load   nload   printf   tracking   download   manager   article   ack   get   

原文地址:http://www.cnblogs.com/blfbuaa/p/7256012.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!