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;
}
Answer: C
No answer description available for this question.