I have tried both system() and popen(). When I run the program on cygwin terminal it works perfectly fine but when I try to run it on windows platform by double clicking on .exe file I get this error:
exception::handle: Exception: STATUS_ACCESS_VIOLATION
I get this error on popen() however I do not get any error for system().
I am running simple commands that work on both unix and windows OSs such as:
system("echo foo>foo.txt");
What am I doing wrong here?