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
What is the difference between āgā and āgā in C?
Write a program to reverse a given number in c?
What are the salient features of c languages?
What is a static function in c?
What is 02d in c?
What are the Advantages of using macro
If you know then define #pragma?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Is there sort function in c?
What are the different types of control structures?
What is identifier in c?
Why c is a procedural language?
What is a stream?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Difference between pass by reference and pass by value?