Can we use multiple lines of statements inside the true section of conditional operator like in if else?
(a>b)? large = a; printf("%d",a) : large = b; printf("%d",b);
Can we use multiple line if statements in the true section of a ternary operator??
Yes, by using ,(comma) to separate expressions