What is the difference between fread and fwrite function?


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

Post New Answer

More C Interview Questions

WHAT IS C?

6 Answers  


Why we write conio h in c?

0 Answers  


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

0 Answers   Google,


What is a symbolic constant?

1 Answers  






how to print this pyramid * * * * * * * * * * * * *

2 Answers  


difference between c and c++?

2 Answers  


In which header file is the null macro defined?

0 Answers  


How do you generate random numbers in C?

0 Answers  


What is .obj file in c?

0 Answers  


what is recursion in C

0 Answers   Cap Gemini,


Explain what is the difference between far and near ?

0 Answers  


Categories