Visual C++ Express Edition User Guide
Visual C++ Express Edition User Guide
User Guide
To open the application, Go to Start and select All Programs -> Visual C++ 9.0 Express Edition -> Microsoft
Visual C++ 2008 Express Edition.
To create a new C project, choose New -> Project from the ‘File’ menu. The following screen will appear.
To add a new file to the newly created project, right click on the Source Files folder and select Add -> New Item.
The below screen will be displayed.
Now you can write your code inside the Test class.
To compile and execute the program, press Ctrl + F5. The below window will appear asking whether to build the
project.
To enter the debug mode, press F5. The program execution stops at the point where there is a breakpoint. In the
below image you can see a yellow arrow on the break point. The statements in main before this breakpoint have
been executed and the execution has stopped at the first printf.
You can see the autos and call stack windows below the source code.
You can move to the next line by pressing F11 (Step Into). If there is a function call, pressing F11 will help in
debugging the function. If you dont want to debug the function, you can press F10 (Step Over) when there is a
function call.