adplus-dvertising
frame-decoration

Question

The function fopen("filename","r")returns

a.

Nothing

b.

A value 0 or 1 depending on whether the file could be opened or not.

c.

A pointer to FILE filename,if it exits

d.

A pointer to a new file after creating it.

Posted under C Programming

Answer: (c).A pointer to FILE filename,if it exits

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. The function fopen("filename","r")returns

Similar Questions

Discover Related MCQs

Q. The function sprintf()works like printf(),but operatres on

Q. To instantiate an object with the statement

ifstream items("C:inven.txt");

the file on the disk is identified by the name

Q. Expression ((fpt=fopen("Samples","w"))==NULL)would be true if

Q. The statement fseek(fp,0L,0)i - if syntactically correct,means

Q. The process of accessing data stored in a tape is similar to manipulating data on a

Q. If a file is opened in r+ mode then

Q. If a file is opened in w+ mode then

Q. ftell

Q. The fseek function

Q. The contents of a file will be lost if it is opened in

Q. Which of the following statements is incorrect ?

Q. If y is of integer type then the expression
 3 * ( y - 8 ) / 9 and  ( y - 8 )/ 9 * 3

Q. If n has the value 3, then the output of the statement

printf(  " %d %d " , n++, ++n);

Q. x - = y + 1;  means

Q. printf( "%c", 100);

Q. The following statement

           prlntf( ‘%f ’, 9/5) ;

prints

Q. If a = 9, b = 5 and c = 3, 
then the expression ( a - a/b * b % c) > a % b % c
evaluates to

Q. Consider the declaration 

static char hello[ ] = " hello " ;
The output of printf( " % s \ n ", hello) ;

will be the same as that of

Q. printf("ab", "cd", "ef");

prints

Q. int i = 5;

is a statement in a C program.Which of the following are true?