What is the difference between fread buffer() and fwrite buffer()?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between getch() and getche() in c?
What is the difference between typedef and #define?
What is wrong with this initialization?
What is a Deque?
write a program that will print %d in the output screen??
When should the const modifier be used?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
Give basis knowledge of web designing ...
Explain what are multidimensional arrays?
what is the use of pointers
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?