C_o_d_e__'s blog

By C_o_d_e__, history, 9 months ago, In English
int a=10;
int b=(++a)+(++a)
b is 24

Another

int a=10;
int b=(++a) + (++a) + (--a) + (++a);
b is 47

HOW BOTH IS WORKING

Full text and comments »

  • Vote: I like it
  • -5
  • Vote: I do not like it