Get char from console and display it: getche() : Console Read Char « Console « C / ANSI-C






Get char from console and display it: getche()

  
#include <stdio.h>
#include <conio.h>
#include <ctype.h>

int main(void)
{
  char ch;

  do {

    ch = getche();

    cprintf("%c", toupper(ch));

  } while(ch != 'q');

  return 0;
}


           
       








Related examples in the same category

1. Get the next character from stdin: how to use getchar
2.Read a char from console: getchar()
3.Read a char and check it value
4.Use getchar() in for loop
5.pause until a key is pressed
6.Get char from the console