home *** CD-ROM | disk | FTP | other *** search
-
- /************************************************************************/
- /* 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);
- }