190) The following code fragment
int x, y =2, z, a;
x = ( y* = 2 ) + ( z = a = y )
printf ( "%d" , x );
Answer is:
prints 6 or 8 depending on the compiler implementation
Related C Programming MCQ with Answers
Answer is: