Learning the Visual C++ IDE.
View the following web presentation.
Familiarize yourself with the Visual C++ compiler.
Type the following C++ file into the editor.
// File simple.cpp
// Description: Displays Welcome to CSC126
// Programmer: type your name here
// Date:1/29/01
#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?