Teaching UGC NET Mock Test Series 2025 (Paper 1 & 2) Programming and Data Structure Programming in C Ternary Operator
What is the correct sequence of the following operators in āCā from highest to lowest precedence order?
(a) ==
(b) %=
(c) %
(d) <=
The correct sequence is:1
(c), (b), (a), (d)
2
(c), (a), (d), (b)
3
(c), (d), (a), (b)
4
(a), (b), (d), (c)