contents   index   previous   next



Clib.putchar()

syntax:

Clib.putchar(chr)

where:

chr - character to write to the stream stdout.

 

return:

number - character written on success, else EOF.

 

description:

This method writes chr to the stream defined by stdout (usually the screen). If successful, it will return the character it just wrote; if not, it will return EOF.

 

This method is identical to Clib.fputc(chr, stdout).

 

see:

Clib.puts(), Clib.fputc()

 

 


Clib.puts()