0
Output of the following question
#include <stdio.h> int main() { int x = 1, y = 0, z = 3; x > y ? printf("%d", z) : return z; }
2 Respuestas
+ 14
code playground is your friend
0
I don't think the ternary operator works in C, though
#include <stdio.h> int main() { int x = 1, y = 0, z = 3; x > y ? printf("%d", z) : return z; }