Getting Started 23
1
Exercises ..........................................................................................................
- Look at the following program and try to guess what it does without running it.
1: #include
2: int main()
3: {
4: int x = 5;
5: int y = 7;
6: std::cout << endl;
7: std::cout << x + y << “ “ << x * y;
8: std::cout << end;
9: return 0;
10:} - Type in the program from Exercise 1, and then compile and link it. What does it
do? Does it do what you guessed? - Type in the following program and compile it. What error do you receive?
1: include
2: int main()
3: {
4: std::cout << “Hello World \n”;
5: return 0;
6: } - Fix the error in the program in Exercise 3 and recompile, link, and run it. What
does it do?