Top

Discussion

Which of the following statement is correct about the code snippet given below?

#include < stdio>
int main()
{
int n = 12, k;
printf(“%d”, (k = sizeof( n + 12.0))++);
return 0;
}

 

  • A.The code will print 17
  • B.The code will print 5
  • C.The code will result compile time error
  • D.The code will print 4

Answer: C

No answer description available for this question.

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

Post your comment