What is getch?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

how to build a exercise findig min number of e heap with list imlemented?

0 Answers  


a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..

1 Answers  


What are the uses of pre-processor directives?

2 Answers  


How can I copy just a portion of a string?

0 Answers  


what is disadvantage of pointer in C

13 Answers   Tech Mahindra,






Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack

3 Answers  


how to set Nth bit of variable by using MACRO

3 Answers   HCL,


How can I list all of the predefined identifiers?

0 Answers  


can u give me the good and very optimised code for a car racing game?

0 Answers  


What is getche() function?

0 Answers  


Why structure is used in c?

0 Answers  


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

0 Answers   Wilco,


Categories