adplus-dvertising
frame-decoration

Question

What is the output of this C code?
#include <stdio.h>
    int main()
    {
        FILE *fp = stdin;
        int n;
        fprintf(fp, "%d", 45);
    }

a.

Compilation error

b.

45

c.

Nothing

d.

Depends on the standard

Posted under C Programming

Answer: (c).Nothing

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. stdout, stdin and stderr are

Q. Which of the following statements about stdout and stderr are true?

Q. Within main, return expr statement is equivalent to

Q. stderr is similar to?

Q. What happens when we use
fprintf(stderr, “error: could not open filen”);

Q. Which of the following function can be used to terminate the main function from another function safely?

Q. Which of the following causes an error?

Q. What is the purpose of the function?
int ferror(FILE *fp)

Q. stderr is similar to?

Q. What happens when we use?
fprintf(stderr, “error: could not open filen”);

Q. The syntax of fgets is char *fgets(char *line, int maxline, FILE *fp). Which is true for fgets.fgets ?

Q. fputs function writes a string to a file that only ends with a newline

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?