Learning C-Style C++
by Direct Approach Mentoring
Starting a "Win32 Console Project" 0. Visual Studio
Visual Studio is a very big program with millions of Microsoft-style features that no one will ever find or use.
Here is generally how to get to where you can write code in Visual Studio:
- Open Visual Studio
- In the menu, select File->New->Project...
- Find the icon for Win32 Console Project
- Type a name for your project and click OK
- Click Application Settings and check the box for Empty Project
- Click Finish
Now you have a project with no files, but we need a C++ source file, so
- Right-click on Source Files in the Solution Explorer
- Choose Add->Add New Item...
- Find the icon for C++ File (.cpp)
- Give it a name (same as project is ok) and click Open
Now you can write code.
|