The ones who are crazy enough to think they can change the world are the ones who do.- Steve Jobs
In most of the MNC interview questions such as in ZOHO interview question, IVTL Infoview interview questions, Amazon interview questions, GOOGLE interview questions, Infosys interview questions and even in Voonik interview questions, We come across several Tricky C Questions about which 2:5 of the questions are from Files in c. Solving that kind of tricky C questions is not an easy task for all C programmers. We need more practices to solve it with ease. So we provide 25+ interesting C questions in Files to make your MNC interview very easy.
1.What will be the output of the C program?
#include<stdio.h> int main() { int EOF = 0; printf("%d", EOF); return 0; }
Option: D
In C, EOF is a predefined macro constant. we can't change the value of constant. So, it results into an error message.
2.What will be the output of the C program?
#include<stdio.h> int main() { printf("%d", EOF); return 0; }
Option: B
In C, EOF - End of File which is a macro and its header file is stdio.h. In C, EOF is equal to -1 by default. We can use EOF in some programs to check whether file pointer reaches the end of the file.Refer more about Files
3.What will be the output of the C program?
#include<stdio.h> int main() { EOF++; printf("%d", EOF); return 0; }
Option: A
In C, EOF is a predefined macro constant. we can't change the value of constant. So, it results into an error message.
4.If fopen() functions is not able to open a file, it will returns?
Option: D
In C, fopen() will returns NULL if the file is not found or unable to open the file.
5.File is a type of?
Option: A
In C, FILE is a predefined structure defined in "stdio.h" header file.
We may make mistakes(spelling, program bug, typing mistake and etc.), So we have this container to collect mistakes. We highly respect your findings.
© Copyright 2019