putchar
 
Syntax


int putchar (char c);

Description


putchar will send a single character to the PC via SOUT.

putchar returns the character sent in form of an integer.

Example

putchar (0x31);           // will display 1
   

See also