/**************************************************************************** ** COPYRIGHT (C): 1996 Cay S. Horstmann. All Rights Reserved. ** PROJECT: Computing Concepts with C++ ** FILE: circle.cpp ****************************************************************************/ #include "ccc_win.cpp" int main() { Point p(1, 3); cwin << p << Circle(p, 2.5); return 0; }