So i have a program that asks for a http link and puts that into a string. I get errors when i do this.
string link = "somerandomlink";
string x = "wget "link" -P Pak";
system(x);
How can i put those strings together and how will i be able to use system with it?
Hello
BTW, you should use `popen`, or if you are in a posix env, `posix_spawn`
Last edited on