**** **** **** **** ANS: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 /* Exercise 3.33 Solution */ #include int main() { int side; /* side counter */ int temp; /* temporary integer */ int asterisk; /* asterisk counter */ printf( "Enter the square side: " ); /* get size of squ are */ scanf( "%d", &side ); temp = side; /* loop through rows of square */ while ( side-- > 0 ) { asterisk = temp; /* loop through columns of square */ while ( asterisk-- > 0 ) { printf( "*" ); } /* end inner while */ putchar( '\n' ); } /* end outer while */ return 0; /* indicate successful termination */ } /* end main */ are */ scanf( "%d", &side ); temp = side; /* loop through rows of square */ while ( side-- > 0 ) { asterisk = temp; /* loop through columns of square */ while ( asterisk-- > 0 ) { printf( "*" ); } /* end inner while */ putchar( '\n' ); } /* end outer while */ return 0; /* indicate successful termination */ } /* end main */