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 a keyword?
Is exit(status) truly equivalent to returning the same status from main?
Write a function that will take in a phone number and output all possible alphabetical combinations
Are the outer parentheses in return statements really optional?
Write a code to remove duplicates in a string.
How can I make sure that my program is the only one accessing a file?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
what is event driven software and what is procedural driven software?
Are pointers integer?
What are the loops in c?
What is the need of structure in c?
Explain what is the difference between null and nul?
What is the acronym for ansi?
Why c is known as a mother language?
What is the difference between union and structure in c?