0
    #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?

Shankha Jana
  • 79
  • 1
  • 1
  • 6

0 Answers0