Getting Started With Visual C++
Visual C++ is a Windows-based environment for compiling, running,
and debugging programs written in C (or C++).
To get started:
- Create a directory on the desktop with your name:
- right click on Desktop -> New -> Folder -> [enter your name, e.g., yoram]
- Open Visual C++ by double-clicking on "Microsoft Visual C++ 2008 Express Edition" on Desktop
- Create New Project
- File->New->Project -> Win32 console application
- [enter project name, eg. mar27a] ->
[find Location: Desktop->your name] -> OK. Don't hit Finish yet!
- Application Settings -> check "Empty Project" -> Finish
- Create source file
- Compile and run
- Debug-> start without debugging (or ctrl-F5)
- Answer Yes to "Would you like to build it?"
See also this website
for instructions with pictures