14; Printf ("i=%d",i); } Answer: i=0 Explanation: In the expression !i>14 , NOT (!) operator has more precedence than ‘ >’ symbol. ! is a unary logical operator. !i (!10) is 0 (not of true is false). 0>14 is false (zero)."/>

Latest C Aptitude Question SOLUTION: output?? #define int char main() {i nt i=65; printf("sizeof(i)=%d",sizeof(i)); } Answer: sizeof(i)=1 Explanation: Since the #define replaces the string int by the macro char 50. ma