Writes a specified character string directly to the current screen
#include <nwconio.h>
int cputs (
const char *buf);
(IN) Points to a character string.
cputs returns a nonzero value if an error occurs. Otherwise, it returns a value of 0. When an error has occurred, errno is set.
The carriage-return and line-feed characters are not appended to the string. The terminating NULL character is not written.
#include <nwconio.h>
main ()
{
char buffer[82];
buffer[0]=80;
cgets (buffer);
cputs (&buffer[2] );
putch (’\r’);
putch (’\n’);
}