如何从C运行.exe文件?

时间:2018-09-27 17:34:56

标签: c

我已经使用Matlab创建了wit_func.exe。现在,我正在尝试使用C运行程序。 我已经编写了以下代码:

#include <stdio.h>
#include<stdlib.h>

int main(int argc, char **argv)
{
    int r;
    r=system("C:\\Users\\mails\\OneDrive\\Documents\\MATLAB\\Testing for the executable files\\wit_func.exe");
    printf("%d",r);
    getchar();
    return 0;
}

我提供了该.exe文件的路径。我得到以下输出: 无法将“ C:\ Users \ mails \ OneDrive \ Documents \ MATLAB \ Testing”识别为内部或外部命令, 可操作的程序或批处理文件。 1

我还需要将一些整数参数传递给此可执行文件。有人可以帮助我正确运行此程序吗?

0 个答案:

没有答案