You can maybe write more data in your char arrays, but you are overwriting storage which does not belong to the program ,and most likely this will lead to severe errors at some point.
Code such as this
int i1 = 016;
cout << i1 << endl;
writes the value "14" to the console, since...