Answer to Question #7483 in C++ for hadi

Question #7483
#include<stdio.h>
#include<conio.h>
main()
{
int i=3,r;
r=(i*10) + ++i;
printf("%d",r);
getch();
}
result must be 33 but is 44.
1
Expert's answer
2012-03-15T10:41:46-0400
The result is 44 because the first operation is performed the increment (++i), for then theresult was 33 need remove the increment or write it like this: i++.





#include<stdio.h>

#include<conio.h>

main()

{

int i=3,r;

r=(i*10) + i;

printf("%d",r);

getch();

}




or this, if you need to increment "i":





#include<stdio.h>

#include<conio.h>

main()

{

int i=3,r;

r=(i*10) + i++;

printf("%d",r);

getch();

}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS