Explain a file operation in C with an example.


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

Post New Answer

More C Interview Questions

Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?

1 Answers  


How to calculate Total working time using Login and logout?

2 Answers   CTS, Cygnus, Infosys, Signal Networks, TCS, Wipro,


What is a void pointer? When is a void pointer used?

0 Answers   Aspire, Infogain,


What are the header files used in c language?

0 Answers  


Explain what are bus errors, memory faults, and core dumps?

0 Answers  






Why static is used in c?

0 Answers  


#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }

15 Answers   Infosys,


main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*

1 Answers  


Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.

6 Answers   FCI, TCS,


when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none

7 Answers   HCL,


what is use of loop?

10 Answers   Infosys,


#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }

1 Answers  


Categories