I am basically trying to store everything after a certain index in the array.
For example, I want to store a name which is declared as char name[10]
. If the user inputs in say 15
characters, it will ignore the first five characters and store the rest in the char array, however, my program crashes.
This is my code
char name[10];
cout<< "Starting position:" << endl;
cin >> startPos;
for(int i= startPos; i< startPos+10; i++)
{
cout << i << endl; // THIS WORKS
cout << i-startPos << endl; // THIS WORKS
name[i-startPos] = name[i]; // THIS CRASHES
}
For example, if my name was McStevesonse
, I want the program to just store everything from the 3rd position, so the end result is Stevesonse
I would really appreciate it if someone could help me fix this crash.
Thanks
Suppose
i
is equal to 3. In the last iteration of the loop,i
is now equal to 12, so substituting 12 in fori
, your last line readsname[12]
is out of bounds of the array. Based on what you have shown so far, there is nothing but garbage stored inname
anyway before you start doing this assignment, so all you're doing is reorganizing garbage in the array.