int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?
Answer Posted / fazlur
the output will b 4.
| Is This Answer Correct ? | 6 Yes | 18 No |
Post New Answer View All Answers
How can I make sure that my program is the only one accessing a file?
What is && in c programming?
What is wrong with this declaration?
What are the different types of objects used in c?
Why are all header files not declared in every c program?
what do you mean by enumeration constant?
What does c value mean?
What is the most efficient way to count the number of bits which are set in an integer?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
I have seen function declarations that look like this
In a switch statement, what will happen if a break statement is omitted?
Why is c so important?
How can I send mail from within a c program?
List a few unconditional control statement in c.
How can you return multiple values from a function?