home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / window / pcw_c / qblkdemo.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-30  |  368 b   |  14 lines

  1. #include <stdio.h>
  2. #include "pcwproto.h"
  3.  
  4.     static char *block[] = {
  5.        "q_block_write() make writing arrays of character",
  6.        "strings a breeze because you do not have to  set",
  7.        "up loops to do it yourself                      ",
  8.         NULL
  9.     };
  10.     void main(void) {
  11.        vcls();
  12.        q_block_write(10,CENTER,4,0,block);
  13.     }
  14.