adplus-dvertising
frame-decoration

Question

What is the output of this C code if
following commands are used to run(considering myfile exists)?
gcc -otest test.c
./test < myfile
#include <stdio.h>
    int main()
    {
        char c = 'd';
        putchar(c);
    }

a.

Compile time error (after first command)

b.

d in the myfile file

c.

d on the screen

d.

Undefined behaviour

Posted under C Programming

Answer: (c).d on the screen

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 if following commands are used to run(considering myfile exists)? gcc -otest test.c ./test < myfile

Similar Questions

Discover Related MCQs

Q. The statement prog <infile causes

Q. What is the difference between %e and %g?

Q. Escape sequences are prefixed with

Q. What is the purpose of sprintf?

Q. The syntax to print a % using printf statement can be done by

Q. What does this statement printf(“%10s”, state); means?

Q. What are the Properties of first argument of a printf functions?

Q. Which of the following function with ellipsis are illegal?

Q. Which of the following data-types are promoted when used as a parameter for an ellipsis?

Q. Which header file includes a function for variable number of arguments?

Q. Which of the following macro extracts an argument from the variable argument list (i.e ellipsis) and advance the pointer to the next argument?

Q. The type va_list is used in an argument list

Q. Each call of va_arg

Q. The standard header _______ is used for variable list arguments (…) in C.

Q. va_end does whatever

Q. Which of the following is NOT a delimiter for an input in scanf?

Q. If the conversion characters of int d, i, o, u and x are preceded by h, it indicates?

Q. Which of the following doesn’t require an & for the input in scanf?

Q. Which of the following is an invalid method for input?

Q. Which of the following represents the function for scanf?