putch() Write a Character to the Console
#include <conio.h> Required for declarations only
void putch(c);
int c; Character to be output
The putch() function writes the character 'c' to the console.
Returns: There is no return value.
-------------------------------- Example ---------------------------------
The following statement writes a capital 'A' to the screen.
#include <conio.h>
int ch = 'A';
main()
{
putch(ch);
}
Seealso:
This page last updated on Fri Nov 30 10:48:32 MSK 2001
Copyright © 1992-2001, Vitaly Filatov, Moscow, Russia
Webmaster