How do I specify command line arguments for a netbeans C++ project?
There does not seem to be a suitable place on debug tab.
It is possible to pass some values from the command line to your C programs when they are executed. These values are called command line arguments and many times they are important for your program especially when you want to control your program from outside instead of hard coding those values inside the code.
To specify command line arguments for a C++ project in netbeans go to:
Project properties
=> Run
=> Run Command
The default is:
"${OUTPUT_PATH}"
Change that to:
"${OUTPUT_PATH}" hi 5
The create main.cpp with this code:
int main(int argc, char** argv) { cout << "First argument: " << argv[1] << endl; cout << "Second argument: " << argv[2] << endl; return 0; }
Produces output:
First argument: hi Second argument: 5 RUN SUCCESSFUL (total time: 320ms)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With