C Programming
Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);}
50, 13, 24, 13
13, 10, 24, 50
50, 13, 11, 13
50, 13, 24, 50
13, 13, 24, 13
ANSWER
DOWNLOAD EXAMIANS APP
↑