The purpose of this practical is simply to introduce the Microsoft Visual C++ IDE.
C++ programs are usually made up of a number of source files. Visual C++ allows us to manage source files in a project. We may work on a number of projects at once and these projects are arranged in a workspace. We can only open one workspace in the IDE and only one project may be "active" at once.
The simplest arrangement consists of our workspace with a single project and a single source file. We can now create our own simple program in this manner.
#include <iostream> int main() { std::cout << "Hello World!" << std::endl; return 0; }