Quote (Eep @ Dec 9 2012 03:32pm)
seems like it would take the values, respectively in each element, and modify them
the first case taking the value and adding 200 to it, the second case taking the value and decreasing it by one.
but what if is were to say that:
two = "baseball";
two[3]++;
two[4]='Q';
two[5]='9';
cout<<two<<endl;
what would it change it to?o.O