What is the difference between functions getch() and getche()?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to generate prime factors of a given integer?
What is meant by high-order and low-order bytes?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What is the difference between procedural and functional programming?
What is the difference between variable declaration and variable definition in c?
What does *p++ do?
What is 1d array in c?
How do you initialize function pointers? Give an example?
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
what is an inline function?
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason