is there a way that I can store the output of the system() function? Not the return value, but the value that it outputs to the command prompt
Storing output of system function
Collapse
X
-
You can use command line redirects to put it in a file, but I'd recommend getting into whatever API you are using and using that to get the values you need.Originally posted by twootonis there a way that I can store the output of the system() function? Not the return value, but the value that it outputs to the command prompt
Comment