cmd上的gcc-Mingw编译错误

时间:2015-07-31 12:53:04

标签: gcc mingw mingw32

我在Windows 32位安装gcc-mingw用于c编程语言..我第一次在我的笔记本电脑上安装,所以当我打开记事本文件并将此文件保存在桌面上,名称为hello.c

#include <stdio.h>
int main()
{
 /* my first program in C */
 printf("Hello, World! \n");

 return 0;
}

然后当我打开命令提示符并输入

 gcc hello.c -o hello

然后显示错误

gcc:error:hello.c:no such file or directory
gcc:fatal error:no input files
compialtion terminated

如何解决这个错误?

1 个答案:

答案 0 :(得分:0)

我怀疑您从不同于hello.c文件所在的文件夹运行命令