what is the difference between getch() and getche()?
Answer Posted / ayaskanta
getch is used to get a character from keyboard. once a key
is pressed it goes back to blue screen. In the case of
getche the compiler waits for you to press ENTER after you
have entered another character through keyboard.
| Is This Answer Correct ? | 14 Yes | 9 No |
Post New Answer View All Answers
What are the main characteristics of c language describe the structure of ac program?
How are portions of a program disabled in demo versions?
What is equivalent to ++i+++j?
What are register variables in c?
Can we compile a program without main() function?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
Why do we use return in c?
What is the use of c language in real life?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What is a 'null pointer assignment' error?
Is void a keyword in c?
How many types of operator or there in c?
How are pointers declared in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.