sreenath205
Programmer
Code:
=================================
#include<stdio.h>
{
void main()
{
int i,j;
i=5;
j=++i * ++i;
printf("%d",j);
}
}
Out put:49
=================================
The output should be 42 why is it 49
Thanks in advance