C++

Objectives :

  • debug : step (F7) and Step-Over (F8)
     

Step: 1 Create a a source file Using Qincy compiler

Click on Quincy.exe in bin file, and add some code in the text editor

Step: 2 Edit Source code

Step: 3 Debug Steps

a) Hot Key F7 for step through

Press F7 again and note green cursor, moved to the end of the program "return 0". If you press F7 key again command line pane will terminate.

b) debug : F8 for Step Over ( each line )

As we proceed through cout, welcome text will be displayed.

Step: 4 Runtime View

Step: 5b