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 >
Text File  |  1988-04-10  |  514b  |  13 lines

  1.  
  2. /************************************************************************/
  3. /* Get number of rows and column using library function                 */
  4. /************************************************************************/
  5.  
  6. print_rows_cols()
  7.         {
  8.         int     x, y;
  9.         get_rows_n_cols(&x, &y);        /* Get number of rows and cols  */
  10.                                         /* and print it                 */
  11.         printf("\nNumber of rows = %d and columns = %d", x, y);
  12.         }
  13.