1、安装
到MinGW下载最新的安装包
2、使用
将安装包下载解压后,直接使用gcc进行编译:
#include "stdio.h"
int main()
{
printf("hello");
}
> ./gcc.exe -o hello.exe Hello.c
> ./hello.exe
标签:GCC,exe,Windows,gcc,hello,安装包,编译程序
From: https://www.cnblogs.com/servlet-context/p/17612935.html