main()
{
int i=0;
while(+(+i--)!=0)
i-=i++;
printf("%d",i);
}
Answer Posted / rameshp
ans s -1
Bec
while(1!=0) this s false..so next line don't exec..
so i-- means 0--= -1
finally we get -1
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is sizeof in c?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
What is the use of void pointer and null pointer in c language?
What are the types of operators in c?
What is difference between far and near pointers?
Explain what are run-time errors?
What is pointer in c?
Which is best book for data structures in c?
When is the “void” keyword used in a function?
What is the difference between text and binary i/o?
What is the heap in c?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Why are all header files not declared in every c program?
Which built-in library function can be used to match a patter from the string?
How can you find the day of the week given the date?