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
Is c compiled or interpreted?
What does static variable mean in c?
How can a process change an environment variable in its caller?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What are c preprocessors?
What are the features of the c language?
why we wont use '&' sing in aceesing the string using scanf
What do mean by network ?
What is structure data type in c?
Can a pointer be volatile in c?
How we can insert comments in a c program?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
In which header file is the null macro defined?
What are the loops in c?
What is variable and explain rules to declare variable in c?