answersLogoWhite

0

Gets one character (or keystroke) without buffering or echoing; beware: getch is not part of the standard library.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the use of getch in C programming?

We use getch() function to hold the screen so that we can see the output but in real it is use to take a input of a character from the console window. Read this out -


How do you read a character from the keyboard and will store it in the variable?

Use the scanf() function from the C standard library.


Is that any other way to input data in c language other than scanf function?

read, fread, gets, fgets, getc, fgetc, getchar, getch


How do you install curses header file in fedora Linux in order to use getch function in a c an c plus plus program?

dnf install ncurses-devel


What is the use of using C programming?

We use getch() function to hold the screen so that we can see the output but in real it is use to take a input of a character from the console window. Read this out -


Why you use 'integer' before function in C language?

To specify the return-type of the function.


What function is used to perform exponentiation in C language?

You can use the pow() function in math.h.


Defult function in c language is?

Default functions are pre defined functions.Eg. printf();scanf();getch();clrscr();etc..Actually, no-one uses the term 'default function'. (Let alone 'defult function'.)Another answer: Perhaps it is 'main' what you meant.


What is the function of getche in programming c?

Function getche is Borland-specific function declared in conio.h, it does the some thing as getch, but echoes the character on the screen.


Is there any keyword in c or c plus plus like the function inkey in qbasic?

Using TurboC? kbhit and getch are your friends


Why you use else function in c language?

You cannot have a function named else, because it is a reserved word.


How you can convert from string to int in C language?

Use the atoi() or atol() function.