1.

Which of the following is the correct output for the program given below?
#include <stdio.h>
int main ( )
{
int x = 0, y = 1, z = 3;
* ( ( x ) ? &y : &x = x ? y :z;
printf ("%d %d %d n", x, y, z);
return 0;
}

A. 0 1 3
B. 1 2 3
C. 3 1 3
D. 1 3 1
Answer» D. 1 3 1


Discussion

No Comment Found

Related MCQs