Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ Language Reference - disp_putc http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
   disp_putc

   Usage
   #include <disp.h>
   void disp_putc(int c);

   Description
   Writes the character c to the current display package output  location
   using  the  character  attribute set by  disp_setattr.  Handles  tabs,
   carriage returns and backspaces, etc. correctly.

   Example
   #include <disp.h>

   main()
   {
        disp_open();
        disp_move(0,0);
        disp_eeop();
        disp_move(4,10);
        disp_putc('a');
        disp_putc('\t');
        disp_putc('b');
        disp_close();
   }


See Also:

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson