C++执行Shell 本文最后更新于 2024-08-27T14:59:49+00:00 C++执行Shell代码如下 12345678910#include <iostream>int main() { std::string command = "dir"; // 将要执行的 cmd 命令(例如ipconfig,ping等) int result = system(command.c_str()); // 执行命令,并获得返回值 std::cout << "Command result: " << result << std::endl; // 输出返回值 return 0;} 示例代码将执行 dir 命令,并输出命令的返回值。 C++ #C++ C++执行Shell https://blog.qingyi-studio.top/2023/09/09/C-执行Shell/ 作者 Grey-Wind 发布于 2023年9月9日 更新于 2024年8月27日 许可协议 Rust执行CMD 上一篇 C执行Shell 下一篇 Please enable JavaScript to view the comments