Menu

[solved] – 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.

Expert Answer


OR


Leave a Reply

Your email address will not be published. Required fields are marked *