in reply to Re^3: Opening external files with arguements
in thread Opening external files with arguements
Just takes the arguement that was specified at run time and spits it back out. I want to be able to call this program from within my Perl code (preferably with arguements that are variables that I have specified in the Perl code as well.)int main(int argc, char *argv[]) { cout << argv[1]; system("PAUSE"); return EXIT_SUCCESS; }
|
|---|