假如有这么一个程序
int main(){ system("start a.exe"); system("start b.exe"); }
那么是等 a.exe 运行完了再运行 b.exe,还是几乎同时运行? 如果是前者,怎么使两者同时运行?