answersLogoWhite

0

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

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is getche command in c language?

There are no commands in C.TurboC has got a function called getche, read the help (type into the editor: getche +)


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.


What is d command for squareroot in C programming?

There are no commands in C-programming, you should use function sqrt from math.h


What is a sizeof function in C programming?

Sizeof is an example.


Is combination a library function in c language of programming?

No.


What is fncn in C programming?

1. identifier 2. short for function


What is the function of square root in C programming?

it is sqrt in header math.h


What is the difference between a precondition and postcondition in C programming?

In C programming, a precondition is a condition that must be true before a function is called, while a postcondition is a condition that is guaranteed to be true after the function has been executed.


Which function enables you to receive a single character input?

In C you can use following functions - 1. getch() 2. getche() 3. scanf("%c",&ch); getch() just receives the inputs and does not shows the character no need to press enter after the character. getche() is same as getch() but it shows the character. scanf() with format specifier %c can be used to receive a character input. Enter key should be pressed after the character


What is the approach of C programming known as?

Sequential style, or function-oriented. Which is opposed to object-oriented, as in C++.


How do you print 0001 in C programming?

its quite simple using printf function


What an example of a function?

In C-programming: int main (void) { return 0; }