what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / phani
getch() is used to read the character,
but getche()is used to read and display character on output.
| Is This Answer Correct ? | 51 Yes | 33 No |
Post New Answer View All Answers
What are all different types of pointers in c?
What is s in c?
Is c easy to learn?
How many parameters should a function have?
Explain how can I make sure that my program is the only one accessing a file?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
how to create duplicate link list using C???
Can math operations be performed on a void pointer?
Why do we use header files in c?
What are the different types of errors?
Why static variable is used in c?
What are the data types present in c?