gpt4 book ai didi

c++ - 从 C++ 程序在 Linux 中运行另一个程序

转载 作者:IT王子 更新时间:2023-10-28 23:56:24 26 4
gpt4 key购买 nike

好的,我的问题是这样的。假设我有一个简单的 C++ 代码:

#include <iostream>
using namespace std;

int main(){
cout << "Hello World" << endl;
return 0;
}

现在说我有这个程序,我想在我的程序中运行,称之为 prog。在终端中运行它可以通过以下方式完成:

./prog

有没有一种方法可以从我的简单 C++ 程序中做到这一点?例如

#include <iostream>
using namespace std;

int main(){
./prog ??
cout << "Hello World" << endl;
return 0;
}

我们非常乐意提供任何反馈。

最佳答案

你想要system()库调用;见system(3) .例如:

#include <cstdlib>

int main() {
std::system("./prog");
return 0;
}

当然,确切的命令字符串将取决于系统。

关于c++ - 从 C++ 程序在 Linux 中运行另一个程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9120596/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com