puts
 
Syntax


int puts(char * string);

Description


puts send a single string to the PC via SOUT, followed by the newline character.

puts returns -1 on error, otherwise the last character printed

Example

puts("%c 0x31");           // will display %c 0x31
   

See also