P
Q. Determine Output
void main() { int i=10; i=!i>14; printf("i=%d", i); }
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).
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. The continue statment cannot be used with
Q. What is the size of int type?
Q. The format identifier ‘%i’ is also used for _____ data type?
Q. Which of the following is not an arithmetic expression?
Q. Choose a correct statement about a C Switch Construct.
Q. What will be the output of the following code snippet?
Q. Choose a correct statement about a C Multidimensional array.
Discusssion
Login to discuss.