C-Command Line Arguments Questions and Answers
Practice ModeShowing 10 of 129 questions
Q51
The fcloseall() function
Answer: Option D
Q52
Stream oriented files are accessed through
Answer: Option B
Q53
What are the two predefined FILE pointes in c?
Answer: Option C
Q54
Low level files are accessed through
Answer: Option A
Q55
If an error occurs, the function fseek() returns
Answer: Option A
Q56
A file pointer is
Answer: Option C
Q57
Find the output
#include "stdio.h"
void main( )
{
int x=10;
char ch[10];
sprintf(ch,"%d",x);
printf("%s",ch);
}
Answer: Option D
Q58
When fopen( ) fails to open a file it returns
Answer: Option A
Q59
The function used for writing a character into a file is
Answer: Option D
Q60
An I/O stream can be
Answer: Option C