赞
踩
https://sourceforge.net/projects/mingw-w64/files/
参数选择:
①64位电脑选择x8664;32位电脑选择686
②写的C语言程序运行在windows下选择win32;
运行在其它操作系统下选择posix(这是一个协议,windows.不遵循)
③64位电脑,seh比较新但不支持32位;sjj支持32位稳定性好,
推荐选择seh,因为在安装程序中默认就是选seh。
④32位电脑,dwarf性能更优但不支持64位。
进入高级系统设置,打开环境变量,在系统变量中找到path,将复制的路径粘贴到新建变量中
#include<stdio.h>
int main(void){
printf("Hello World!");
printf("你好啊!");
system("pause");//可以在外部控制台打开
return 0;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。