/* Demonstrates nesting two for statements */ #include void draw_box( int, int); main() { draw_box( 8, 35 ); return 0; } void draw_box( int row, int column ) { int col; for ( ; row > 0; row--) { for (col = column; col > 0; col--) printf("X"); printf("\n"); } }