简体   繁体   English

Windows 7中的Geany IDE-执行C程序时出现错误

[英]Geany IDE in windows 7-Getting an error when executing C program

When I'm trying to execute C language program after successful compilation, I am getting an error in console window. 在成功编译后尝试执行C语言程序时,控制台窗口出现错误。 My program's name is first1programm.c . 我的程序的名称是first1programm.c

Here is the code of the program: 这是程序的代码:

#include<stdio.h>

int main(void)
{    
    printf("Hello world")
    return 0;   
}

The error message is: 错误消息是:

 Error '".first 1 program"' is not recognized as an internal or external command,operable program or batch file.

Maybe the path doesn't include the directory you're in. Try adding to your path 路径可能不包含您所在的目录。请尝试添加到路径中

PATH=.;%PATH% PATH =;%PATH%

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM