Top

Discussion

What will be the output?

double var = 8;
    int main()
    {
        int var = 5;
        printf("%d", var);
    }

 

  • A.5
  • B.8
  • C.Compile time error due to wrong format identifier for double
  • D.Compile time error due to redeclaration of variable with same name

Answer: A

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment