Math, asked by joyjain4744, 1 year ago

What is the output of this c code? #include int main() { int x = 1, y = 0, z = 3; x > y ? printf("%d", z) : return z; }?

Answers

Answered by narindarmodi1
1
output will be 3

because z=3
Similar questions