Hello C (环境配置安装)

安装 MinGW

MinGW

http://www.mingw.org
Hello C (环境配置安装)_第1张图片

点击 installatino - applychanges 安装

添加环境变量

在系统变量中找到 Path 变量,在后面加入 min-gw的安装目录,如 D:\MinGw\bin

测试

  • 命令行

    g++ -v
    gcc -v
    g++
    

    成功如下:

    g++: fatal error: no input files
    compilation terminated.

program C

  • 在桌面创建一个hello.c

    #include 
    int main ()
    {
    	printf("hello, C \n");
    	return 0;
    }
    
  • 在 cmd 中输入命令gcc C:\Users\12057\Desktop\c语言\helloworld\hello.c

  • 当前目录下(记住是命令的当前目录)会生成 a.exe 的可执行文件,在 cmd 中输入 a.exe 就可以执行程序了

可以看到控制台打印了内容

你可能感兴趣的:(C)