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++ 3.0r4 - <b>disp_putc</b> 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>
   #include <stdlib.h>

   int main()
   {

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

See Also

   Display package, disp_puts, disp_pokew, putc



See Also: disp_puts disp_pokew putc

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