Debugging your project

The debugger lets you control the execution of your program by setting breakpoints, suspending executed programs, stepping through your code, and examining the contents of variables.

To debug a project:

  1. Click Run > Debug.

    The Debug dialog box opens.

  2. Double-click C++ Local.
  3. In the Name box, type Hello World.
  4. You can now select this debug launch configuration by name the next time that you debug this project.

  5. In the C/C++ Application box, type hello.exe.
  6. Click Debug.
  7. You will now see the debug perspective with the hello.exe application window open. The C/C++ editor is repositioned in the perspective.

  8. In the left margin of the main.cpp window, double-click to set a breakpoint on:
     cout << "You just entered"
  9. Click Run > Resume.
  10. When prompted, type a value other than 'm'.
    The breakpoint will be hit.
  11. In the Variable view, verify that the variable is not 'm'.
  12. Click Run > Resume.
  13. When prompted, type a value other than 'm'.
  14. The breakpoint will be hit.

  15. In the Variable view, verify that the variable is not 'm'.
  16. In the Variable view, right-click the input variable, and select Change Variable Value and type 'm'.
  17. Click Run > Resume.
  18. The output in the hello.exe application window is:
     "You just entered m, you need to enter m to exit."

  19. Type 'm' to end the program.
    The hello.exe application window closes and the debug session ends. The debug perspective remains open.

To learn more about the debug aids at your disposal, refer to the related debug conceptual topics.

Back: Building your project   

Related concepts
Debug overview
Debug information

Related tasks
Debugging

Related reference
Debug view
Debug launch controls
 

IBM Copyright Statement