/* Example programs from the book Scientific and Engineering Programming in C++: An Introduction with Advanced Techniques and Examples, Addison-Wesley, 1994. (c) COPYRIGHT INTERNATIONAL BUSINESS MACHINES CORPORATION 1994. ALL RIGHTS RESERVED. See README file for further details. */ #include "examples/ch6/Point.h" int i = 3; // i is an int initialized to 3 int j(3); // j is also an int initialized to 3 int f1(); // f1 is a function returning int, taking no arguments int f2; // f2 is an int Point p4(); // p4 is a function returning Point, taking no arguments Point p5; // p5 is a Point