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.
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 }