Which of these statements are false w.r.t File Functions?
i)fputs() ii)fdopen() iii)fgetpos() iv)ferror()
A)ii B)i,ii C)iii D)iv

Answers were Sorted based on User's Feedback



Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)..

Answer / pushpa

A)ii

Is This Answer Correct ?    11 Yes 0 No

Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)..

Answer / kavipriya.t

ii

Is This Answer Correct ?    4 Yes 0 No

Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)..

Answer / shruti

ii -> fdopen

Is This Answer Correct ?    3 Yes 0 No

Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)..

Answer / charlee jain

A) ii

Is This Answer Correct ?    2 Yes 0 No

Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)..

Answer / garima

fputs->a function which puts the text in the stream
fdopen->a function to associate the stream with the file handle
fgetpos->a function to get the current pointer position
ferror->is a "macro" to find whether there is an error in
the entered stream
therefore the ans is (iv) ferror..which is not a function
but a macro...:)

Is This Answer Correct ?    1 Yes 0 No

Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)..

Answer / tabassum

IV

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Interview Questions

What is meant by high-order and low-order bytes?

0 Answers  


What oops means?

0 Answers  


Explain what is the most efficient way to store flag values?

0 Answers  


What is difference between array and pointer in c?

0 Answers  


What is substring in c?

0 Answers  






State the difference between x3 and x[3].

0 Answers   Aricent,


what will happen if you free a pointer twice after allocating memory dynamically ?

3 Answers   Novell,


What are the preprocessor categories?

0 Answers  


What is #line in c?

0 Answers  


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

0 Answers   Wilco,


Explain bit masking in c?

0 Answers  


what is difference between array of characters and string

18 Answers   Accenture, Nest,


Categories