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

Explain the difference between ++u and u++?

0 Answers  


What is anagram in c?

0 Answers  


Can we assign integer value to char in c?

0 Answers  


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


What is the difference between void main() and void main (void) give example programme?

0 Answers  






say the following declaration is correct nr not. int b=a,n=0;

4 Answers   Wipro,


What are different storage class specifiers in c?

0 Answers  


Explain how do you determine the length of a string value that was stored in a variable?

0 Answers  


why program counter is 16 bit?

3 Answers  


what is diffrence between string and character array?

1 Answers  


How does free() know explain how much memory to release?

0 Answers  


Is flag a keyword in c?

0 Answers  


Categories