Programming Reference/Librarys
Question & Answer
Q&A is closed
prompts the user to press a character and that character is not printed on screen
#include <stdio.h> #include <conio.h> int main (void) { int c; printf("type in a letter on your keyboard :"); c = getch(); putch(c); return 0; }
type in a letter on your keyboard : x x