Thursday 14 March 2013

i=!i>14;


main()
{
int i=10;
i=!i>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). 


Blog Author: Vijay Kumar

Go to: Java Aptitude

No comments:

Post a Comment