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

Predict the output or error(s) for the following: 25. main() { printf("%p",main); }

3 Answers   Google, ME,


A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor

0 Answers  


Why should I prototype a function?

0 Answers  


What is string in c language?

0 Answers  


how the compiler treats any volatile variable?Explain with example.

1 Answers   Tata Elxsi,






Explain low-order bytes.

0 Answers  


What is s or c?

0 Answers  


What is a node in c?

0 Answers  


main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?

3 Answers   Excel,


#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }

3 Answers   SRG,


What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.

1 Answers  


What are structure members?

0 Answers  


Categories