#include<Stdio.h>
int main()
{
int j=5;
j=++j + ++j + ++j + ++j + ++j;
printf("%d",j);
}
when i am running this C program using codeblocks IDE(GCC compiler) it is showing the output as 41.I'm not getting why the output is 41.is it compiler specific?