Writes a specified character to the current screen
#include <nwconio.h>
int putch (
int charToOutput);
(IN) Specifies the character to be written.
If successful, putch returns the character written. If a write error occurs, the error indicator is set and putch returns EOF.
The putch function writes the character specified by the charToOutput parameter to the current screen.
putch becomes a blocking function if the character to be written out is the newline character
#include <stdlib.h>
#include <nwconio.h>
main ()
{
putch (’a’);
putchar (’b’);
getch ();
}