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
1
output will be 3
because z=3
because z=3
Similar questions