错误消息:系统找不到指定的文件

时间:2014-05-26 09:56:21

标签: c visual-studio-2013

仅考虑此代码:

#include "stdafx.h"
#include <stdio.h>
#include <string.h>

int main(void)
{
    int x=0, y=0;
    printf("PROGRAM:\nPlease type x ");     
    scanf("%i", x);                         
    printf("\nPlease type y");          
    scanf("%i", y);

    printf("\nx * y = %i", x*y);                 
    printf("\nx / y = %i", x/y);                
    printf("\nx % y = %i", x%y);                 

    getchar();
    return 0;
}

提示1: 此问题与代码本身无关....我认为任何代码都会显示相同的错误消息!!

执行代码后,始终会弹出一条包含内容的错误消息

Unable to start program 'D:\Path of My Programm\MyProgram.exe'.
The system cannot find the file specified.

然后,在我在错误消息弹出窗口中单击确定后,始终显示此错误消息:

输出结果为:

1> Build started: Project: 2, Configuration: Debug Win32
1>cl : Command line error D8021: invalid numeric argument '/wdC4996'
Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped

并显示错误:

Error 1 error D8021: invalid numeric argument '/wdC4996'
C:\Users\Nobody\Documents\Visual Studio 2013\Projects\2\2\cl 2

提示2: 在项目&gt;&gt;下属性&gt;&gt;高级&gt;&gt;禁用特定警告         我已经提出以下内容:C4996;%(DisableSpecificWarnings)

任何想法如何解决上面提到的错误??

我尝试了以下方法来解决问题而没有成功:

  1. 放一个较短的文件名和项目名称!
  2. 使用相同的代码内容创建新项目,但将项目保存在默认路径下:C:\Users\Nobody\Documents\Visual Studio 2013\Projects

0 个答案:

没有答案