Explain what is the difference between functions getch() and getche()?
No Answer is Posted For this Question
Be the First to Post Answer
What is the purpose of main( ) in c language?
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
What is the description for syntax errors?
What is the difference between fread and fwrite function?
What is meant by type casting?
List the difference between a While & Do While loops?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
Can we replace the struct function in tree syntax with a union?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
How does the C program handle segmentation faults?
Difference between null pointer and dangling pointer?