Learning the Visual C++ IDE. 

Read through and follow the instructions in Professor Zelikovitz' instructions on how to use Visual Studio 2010 IDE.

Change the program in the tutorial so that it looks like the following C++ program.

#include <iostream>

using namespace std;

 

int

main()

{

     cout << "Welcome to CSC126. ";

 

     return 0;

}

 

Compile and Run the program. 

 

Delete the first quote in "Welcome to CSC126. "

Compile the program.  What happens?