int a=1,b;
b=++a + ++a;
printf("%d",b);
it is giving 6 as answer...i cannot understand how it is. can anyone help me out please......
b=++a + ++a;
printf("%d",b);
it is giving 6 as answer...i cannot understand how it is. can anyone help me out please......
Comment