Hi all,
I have a program that has input arguments.
Under eclipse (version: 3.4.1) I must go to Run/Run configuration and in arguments tab I define all arguments using button "variable" with their value.
Then when running configuration I'm getting problem:
No argument is passed to my program. I tested my program in command line (like this) and all works fine:
Code:
$ ./test_param -a 2 -b 5 -c 7
So what can I do in the case when I must debug big program with input arguments ?