请教一个system()的问题
@echo offcopy key uedit32.reg
start uedit32.exe
exit
首先,以上批处理本身没有问题,
问题1:我想用c程序完成上面的批处理,但系统却不能识别start uedit32.exe指令;
问题2:我最初的目的是启动uedit32后关闭cmd对话框,不知有没有高手能够指点。
#include <stdlib.h>
#include <stdio.h>
#include <dir.h>
main()
{
system("copy key Uedit32.REG");
system("start uedit32.exe"); /*这个地方执行时出问题了,dos提示错误指令,但如果去掉start,打开uedit32.exe后,不会自动关闭dos*/
system("exit");
}
[此贴子已经被作者于2007-3-5 10:35:54编辑过]