home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C Programming Starter Kit 2.0
/
SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso
/
tyc
/
list6_2.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-10-16
|
395 b
|
23 lines
/* Demonstrates nesting two for statements */
#include <stdio.h>
void draw_box( int row, int column);
main()
{
draw_box( 8, 35 );
}
void draw_box( int row, int column )
{
int col;
for( ; row > 0; row-- )
{
for(col = column; col > 0; col-- )
printf( "X" );
printf( "\n" );
}
}