int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?
Answer Posted / asdf
un predictable
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is typedf?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
What are void pointers in c?
What is array of structure in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is pragma in c?
What is the use of parallelize in spark?
What is the difference between typedef and #define?
What is ponter?
What is abstract data structure in c?
What is difference between union All statement and Union?
When should you not use a type cast?
List the difference between a "copy constructor" and a "assignment operator"?
Why string is used in c?