I came across this code snippet somewhere but cannot understand how does it works:
#include"stdio.h"
int main() {
int j = 1;
+ j += + j += + j++;
printf("%d",j);
return 0;
}
Output:
6
Please explain the working of this code snippet.