I want to do something like that:
int main(int argc, char* argv[]) {
string input = string(argv[1]);
// some code to run MyScript.vbs with arg=input
return 0;
}
What should I write in the third line of that code to run the script with arg from my program input?