91
What will be the output of the following C code?
#include <stdio.h>
int main()
{
int y = 2;
int z = y +(y = 10);
printf("%d\n", z);
} Answer & Solution
Answer: Option
B
No explanation is given for this question. Let's Discuss on Board