adplus-dvertising
frame-decoration

Question

What is the output of this C code?
#include <stdio.h>
    #include <string.h>
    int main()
    {
        char line[3];
        FILE *fp;
        fp = fopen("newfile.txt", "r");
        while (fgets(line, 3, fp))
        fputs(line, stdout);
        return 0;
    }

a.

Compilation error

b.

Infinite loop

c.

Segmentation fault

d.

No.of lines present in file newfile

Answer: (c).Segmentation fault

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this C code?

Similar Questions

Discover Related MCQs

Q. fputs adds newline character

Q. puts function adds newline character

Q. gets function checks overflow run

Q. puts does the following when it writes to stdout

Q. What is the size of array “line” used in fgets(line, maxline, *fp) function?

Q. The following function

int fputs(char *line, FILE *fp)
returns EOF when:

Q. Which function has a return type as char pointer?

Q. Which of the following is the right declaration for fgets inside the library?

Q. Which is true about fputs.fputs returns?

Q. gets and puts operate on

Q. gets does the following when it reads from stdin

Q. Strcat function adds null character

Q. Which of the following library function is not case-sensitive?

Q. The following expression can be substituted for

if (isalpha(c) && isdigit(c))

Q. Which of the following will return a non-zero value when checked with isspace(c)?

Q. Which is true about isaplpha(c), where c is an int that can be represented as an unsigned char or EOF.isalpha(c) returns?

Q. Which is true about isupper(c), where c is an int that can be represented as an unsigned char or EOF.isupper(c) returns?

Q. Which is true about isalnum(c), where c is an int that can be represented as an unsigned char or EOF.isalnum(c) returns?

Q. Which types of input are accepted in toupper(c)?

Q. What is the difference in the ASCII value of capital and non-capital of the same letter is?