Given code is written in C language. Find the output of the program.
int i = 6, j = 14, k = 7, l = 7, x; x = i > j ? j > k ? 12 : k > l? 13 : 14 : 15;printf("%d", x);
Reveal answer
Fill a bubble to check yourself
Given code is written in C language. Find the output of the program.
int i = 6, j = 14, k = 7, l = 7, x; x = i > j ? j > k ? 12 : k > l? 13 : 14 : 15;printf("%d", x);