string s("0101");
I can't change it into s=1101
by
s[0]='1';
because string.this[i] is read-only, no assignment is allowed :-(
thank you for your help
I can't change it into s=1101
by
s[0]='1';
because string.this[i] is read-only, no assignment is allowed :-(
thank you for your help
Comment