Single Character Output Function : putch()

Single Character Output Function : putch()

putch displays any alphanumeric characters to the standard output device. It displays only one character at a time.

Declaration:

putch(variable_name);

Example Declaration:

char ch = 'a';

putch(ch)

Remarks:

putch print only one character at a time screen.

Example Program:

void main()
{
char ch='a';
putch(ch)
}