what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / piyush srivastava
getch() function works to get character from the user,but it
is used to hold the output,it may have the alternatives but
it the easiest way to perform this action.
getch() only read the character from the user but getche
also display it on the output screen .
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
cavium networks written test pattern ..
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What is union in c?
What is #include conio h?
Explain what are linked list?
Can true be a variable name in c?
Explain void pointer?
Why can arithmetic operations not be performed on void pointers?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
What is cohesion and coupling in c?
Can a local variable be volatile in c?
Is c compiled or interpreted?
Explain about C function prototype?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
How many loops are there in c?