Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个 c++ 程序,比如说 prog1 和 prog2。我需要通过命令行从 prog1 启动 prog2 并向其发送数据。我想知道在哪里可以找到有关此问题的一些文档或教程?我搜索了互联网,但找不到任何东西。
谢谢。
您必须使用 CreateProcess 函数。像这样的东西:LPTSTR arguments = "/s /fd:\test"; CreateProcess("C:\win\calc.exe", cmdArgs, NULL,NULL,FALSE,0,NULL,NULL,null,null);