home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-ASM_VI.ARJ
/
PROGC.ZIP
/
PROGC022.C
< prev
next >
Wrap
Text File
|
1988-04-10
|
514b
|
13 lines
/************************************************************************/
/* Get number of rows and column using library function */
/************************************************************************/
print_rows_cols()
{
int x, y;
get_rows_n_cols(&x, &y); /* Get number of rows and cols */
/* and print it */
printf("\nNumber of rows = %d and columns = %d", x, y);
}