Hi Guys!,
How can I create new folder using 'mkdir' command?.
How can I specifically give a name to the folder at run time?
Thanks!
> How can I specifically give a name to the folder at run time? |
1 2 3 4 5 6 7 8 9 10 11
|
#include <fstream>
#include <iostream>
using namespace std;
int main (int argc, char *argv[])
{
cout << "Command line input = " << argv[1] << endl;
return 0;
}
|
Last edited on