Hi I am in the process of coding a caeser cipher and when am currently getting a runtime error that I cannot find the cause of, and can't really continue the code until i solve this issue.
the code is somewhat sloppy since it is in the early stages but if anybody could sift through the code and maybe find the issue, it would be much appreciated.
I cant copy the output data due to the error forcing a close but it says
...
This program has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
When you do this: for(int i=0;i<100;i++) you need to keep within the bounds of the data. Try using i<this->size() instead of i<100 as the test condition.