I need to debug my program, the problem is that this program takes couple of parameters. How Can I debug program which takes a parameters ?? Can I somehow modify argc and argv parameters in runtime ??
The best way is not to modify the arguments at runtime but to debug an instance that has the arguments you want.
For Windows you can do this in Visual Studio as follows:
Alternatively start the program up as normal from the command line, and attach the debugger afterwards.