C_o_d_e__'s blog

By C_o_d_e__, history, 3 weeks ago, In English

lets we have

string s="" , k="abcd";

(1) s=s+a;

(2) s+=a;

Full text and comments »

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

By C_o_d_e__, history, 10 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