home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / pcgraphc.zip / CHARS.C < prev    next >
C/C++ Source or Header  |  1988-12-26  |  453b  |  24 lines

  1. #include <stdio.h>
  2. #include "graph.h"
  3.  
  4. main()
  5.     {
  6.     int mode;
  7.     mode = CGA_640x200;
  8.     g_init (mode);
  9. /*    limit (50, 210, 50, 150);  */
  10. /*    locate (10.0, 100.0, 10.0, 90.0 );     units in gdu's */ 
  11.     frame ();
  12.     scale (0, 10.0, 0, 10.0);
  13.     move (1,9);
  14.     lorg (1);
  15.     labelf ("abcdefghijklm\nnopqrstuvwxyz");
  16.     move (1,6);
  17.     labelf ("ABCDEFGHIJKLM\nNOPQRSTUVWXYZ");
  18.     move (1,3);
  19.     labelf ("1234567890,./\\<\n>?| ;':\"!@#$%^&*()_+`~");
  20.  
  21.     exit(0);
  22.     }
  23.  
  24.