How do I specify command line arguments for a netbeans C++ project?
There does not seem to be a suitable place on debug tab.
How do I specify command line arguments for a netbeans C++ project?
There does not seem to be a suitable place on debug tab.
You can add multiple Run/Debug configuration for different arguments (or different executable) using Project Properties -> Run -> Manage Configurations -> New. Then you can add the commands/arguments there. In the main editor, the "Run" toolbar has a drop down that you can select desired configuration then you can use the Run/Debug button with this configurations
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:
Produces output: