void main()
{
int i=5;
printf("%d",i+++++i);
}

Answers were Sorted based on User's Feedback



void main() { int i=5; printf("%d",i+++++i); } ..

Answer / visu

i+++++i=i++ + ++i
remember this expression is nothing but adding two i's

now unary operators hav higher precedence than binary
=>++ executes first
so i++ =5 (since value changes after statement)
and ++i makes it i=6

as i said its jus adding to i's
now ans=i+i=6+6=12

Is This Answer Correct ?    15 Yes 5 No

void main() { int i=5; printf("%d",i+++++i); } ..

Answer / surenda pal singh chouhan

Compiler Error

Explanation:
The expression i+++++i is parsed as i ++ ++ + i which is an
illegal combination of operators.

Is This Answer Correct ?    17 Yes 9 No

void main() { int i=5; printf("%d",i+++++i); } ..

Answer / basha

error: invalid lvalue in increment

Is This Answer Correct ?    8 Yes 3 No

void main() { int i=5; printf("%d",i+++++i); } ..

Answer / jaroosh

This is a very interesting issue, to solve this, first you
have to note an interesting thing about pre and
postincrementation operators :
a) postincrementation operator instantly MAKES variable an
RVALUE in expression, this is because postincrement operator
doesnt keep track of how many postincrements were made so it
is NOT cumulative (ie u can only use one postincrementation
for variable)
b) preincrementational operator first increments variable
and THEN uses it in expression so there is no need to keep
track of how many preincrementations were made thus
preincrement is cumulative.
Following lines make the point :
i++ = 1; //WRONG! i++ becomes RVALUE,you cannot assign to it
++i = 1; //OK! you first incremented and then assigned.
and thus :
i++++; //WRONG! (i++) is RVALUE so you cannot (RVALUE)++
++++i; //OK! ++(++i)
Now, since postfic ++ has the higher precedence, :
i+++++i
is treaded like :
(i++)++ + i
which will throw compiler error.
i++ + ++i
is however fine, so as
i+ ++++i

This issue might be compiler specific, Im not sure.

Is This Answer Correct ?    5 Yes 2 No

void main() { int i=5; printf("%d",i+++++i); } ..

Answer / sheetal

gives error
"error C2105: '++' needs l-value"
because it parses above expression in "((i++)++)+i), so in
2nd unary operator it searches for l-value.
If we modify above pgm into following way:-
void main()
{
int i=5;
printf("%d",((i++)+(++i)));
}
it will give answer 12.
because once last pre-unary increment operator is operated,
i is incremented to 6 and 6+6 = 12.
if we put one more print for i's value, it will give i =7.
because first post-increment operator is operated after
first printf statement as follows.
void main()
{
int i=5;
printf("%d",((i++)+(++i)));
printf("%d\n",i); // ===> i =7
}

Is This Answer Correct ?    4 Yes 1 No

void main() { int i=5; printf("%d",i+++++i); } ..

Answer / visu

hey sulochana hav u tried it in a compiler..
cuz for me the result for that is 12.

i+++++i might give u an error but for sure (i++ + ++i)=12

Is This Answer Correct ?    7 Yes 5 No

void main() { int i=5; printf("%d",i+++++i); } ..

Answer / suresh reddy

Error

Is This Answer Correct ?    2 Yes 1 No

void main() { int i=5; printf("%d",i+++++i); } ..

Answer / vamsi

Hi Guys.....

The answer is

6+6 = 12

The compiler will take the expression as
i++ + ++i
And the expression would be evaluated from Right to left ...

so answer is 12 and i=7;

Is This Answer Correct ?    1 Yes 0 No

void main() { int i=5; printf("%d",i+++++i); } ..

Answer / pramod

ERROR! Left Operand must be an LVALUE

Is This Answer Correct ?    1 Yes 0 No

void main() { int i=5; printf("%d",i+++++i); } ..

Answer / mukul garg

i=5;
i++ + ++i;
5+7=12
ans:12

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

Is fortran still used today?

0 Answers  


What is storage class?

0 Answers  


int far *near * p; means

0 Answers   Honeywell,


the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b

0 Answers  


write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?

1 Answers  






What is oops c?

0 Answers  


What is const keyword in c?

0 Answers  


what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }

9 Answers  


what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????

2 Answers   Apple,


how is the examination pattern?

0 Answers   Wipro,


main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }

6 Answers  


Why header files are used?

0 Answers  


Categories