What is the output of this C code?
int main() { int x = 1, y = 0, z = 3; x > y ? printf("%d", z) : return z; }
Answer: C
No answer description available for this question.