/*---------------------------------------------------------- Elizabeth Sklar MC140.0X 22 September 2000 This program draws a "circle". ----------------------------------------------------------*/ #include /*--------------------------------------------------------*/ /* main program */ /* */ /*--------------------------------------------------------*/ void main( ) { printf( "here's a circle that looks right when the editor is using\n" ); printf( " Georgia, a variable width font:\n" ); printf( " **\n" ); printf( " ****\n" ); printf( " ******\n" ); printf( " ******\n" ); printf( " ****\n" ); printf( " **\n" ); printf( "\n" ); printf( "here's a circle that looks right when the editor is using\n" ); printf( " Courier, a fixed width font:\n" ); printf( " **\n" ); printf( " ****\n" ); printf( " ******\n" ); printf( " ******\n" ); printf( " ****\n" ); printf( " **\n" ); } /* end of main() */