...
Code Block |
---|
string bs("01234567"); for (int i=0; i<100; i++) { bs[i] = 'X\0''; } |
This program does not typically raise an exception and is likely to crash.
...
...
Code Block |
---|
string bs("01234567"); for (int i=0; i<100; i++) { bs[i] = 'X\0''; } |
This program does not typically raise an exception and is likely to crash.
...