可以使用exec函数族,该系统的系列函数可以装入并运行外部程序,有关详细资料可以Google一下。
另外,最简单的就是使用system函数,可以将MSDOS命令作为command参数传递给DOS执行。所在函数库为stdlib.h、process.h。
int system(char *command)
举个简单例子,运行计算器程序:
#include<stdlib.h>
main()
{
system("calc.exe");
}
关于文件路径的写法:
#include<stdlib.h>
main()
{
system("c:\\windows\\system32\\calc.exe");
}