DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 
Simple input and output

addch

SYNOPSIS

   #include <ocurses.h>
   

int addch(ch) chtype ch;

NOTES

EXAMPLE

   #include <ocurses.h>
   

main() { initscr(); addch('a'); refresh(); endwin(); }

The output from this program will appear as follows, with a in position 0, 0:

   a
   
   
   
   
   $[]

See also ``The show program''.


Next topic: addstr
Previous topic: Output

© 2004 The SCO Group, Inc. All rights reserved.
UnixWare 7 Release 7.1.4 - 27 April 2004