int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?
Answer Posted / ssssssssss
output
3
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
How many levels of pointers can you have?
write a program to print data of 5 five students with structures?
For what purpose null pointer used?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is the difference between text and binary i/o?
is it possible to create your own header files?
What is the deal on sprintf_s return value?
Explain the concept and use of type void.
Explain what are reserved words?
What is n in c?
how to find binary of number?
How can I use a preprocessorif expression to ?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
What header files do I need in order to define the standard library functions I use?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +