Hi I need to debug my program, the problem is taht 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 ??
feedback
|
|
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. | |||
|
feedback
|
|
If you are using GDB:
| |||
|
feedback
|
|
If you're invoking the debugger from the command line you can just add your command line arguments and the debugger will pass them on to your program. If you're using an IDE, there should be a way to set the arguments that will be passed to your program (for example, in Visual Studio it's in the project properties under "Debugging/Command Arguments"). However, if I'm in a debug session and I want to debug using a variety of different command line arguments, I find it painful to have to edit the project properties continually. For that reason, I'll often make sure to have my I have a handy little routine that'll parse a string into an So things might look something like:
It's not exactly pretty, but I find it more convenient than messing with project properties over and over. | ||||
|
feedback
|