Posts by Nex' • 153 points
3 posts
-
2
votes1
answer149
views -
10
votes2
answers11603
views -
3
votes1
answer182
viewsA: How to pass data read in a program in c++ as momando in cmd
#include <iostream> #include <string> using std::string; using std::system; int main() { string line; string command = "ping "; string param = "www.google.com"; line = command + param;…