Answer to Question 2.1

/* Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
/* The C++ Answer Book */
/* Tony Hansen */
/* All rights reserved. */

001: #include <stream.h>
002: int main(int, char**)
003: {
004:     cout << "Hello, world\n";
005:     return 0;
006: }
Menu of Chapter 2 Answers
Answer to Question 2.2