Table Of Contents
Previous Section Next Section

Chapter 3: One Character Wonders

The programs in this chapter all work and do what they are supposed to do - except that there are one or two characters out of place. Of course, these characters result in real surprises and total failures.

Program 17: Hello Again

We've done it again. We've broken "Hello World." What's wrong:

  1 #include <iostream>
  2
  3 int main()
  4 {
  5     std::cout << "Hello World!/n";
  6     return (0);
  7 }

(Next Hint 172. Answer 69.)

Table Of Contents
Previous Section Next Section