int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?
Answer Posted / ruchi
outout will be 4 in case code is printf("i=4");
printf("i=3");
else this program will show two error
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
how do you execute a c program in unix.
Why is a semicolon (;) put at the end of every program statement?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is #include conio h?
Why is c so powerful?
What is the difference between near, far and huge pointers?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
Explain how can I make sure that my program is the only one accessing a file?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Why calloc is better than malloc?
Do pointers store the address of value or the actual value of a variable?
i have a written test for microland please give me test pattern
Explain what are its uses in c programming?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What is string in c language?