What is the difference between functions getch() and getche()?


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

Post New Answer

More C Interview Questions

What is a memory leak? How to avoid it?

1 Answers  


What is far pointer in c?

0 Answers  


Explain logical errors? Compare with syntax errors.

0 Answers  


What is the use of header?

0 Answers  


How to add two numbers without using arithmetic operators?

18 Answers   College School Exams Tests, e track, Infosys, Pan Parag, Sapient, TCS,






main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


Explain about block scope in c?

0 Answers  


Is it possible to execute code even after the program exits the main() function?

0 Answers  


What are the features of c languages?

0 Answers  


pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)

2 Answers   Subex, Wipro,


Difference between for loop and while loop?

1 Answers  


Categories