jeevi


{ City } bangalore
< Country > india
* Profession * -
User No # 36857
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 1
Users Marked my Answers as Wrong # 2
Questions / { jeevi }
Questions Answers Category Views Company eMail




Answers / { jeevi }

Question { 5098 }

What will be the output of the following program
#include
void main()
{
int i=20;
i-=i+++++i++;
printf("%d",i);
}


Answer

i-=i++ + ++i++
i-=41++
i-=42
i=20-42
i=-22

Is This Answer Correct ?    1 Yes 2 No