answersLogoWhite

0

What is the function of getche in programming c?

Updated: 8/17/2019
User Avatar

Wiki User

15y ago

Best Answer

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

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the function of getche in programming c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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 the function of square root in C programming?

it is sqrt in header math.h


What is fncn in C programming?

1. identifier 2. short for function


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++.


What is library function in C programming?

printf, fgets, strlen, malloc etc


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; }