User profile: alix

User info
User name:alix
History
Joined:
Number of posts:17
Latest posts:

Remove item from C-array and shift
@seeplus, how do you mean? Swap? Any example here?

Remove item from C-array and shift
Here's the code: https://repl.it/@xxxxxx10/experiement#main.cpp, you can run and debug it.

Remove item from C-array and shift
No vector. std::vector<Monster> monsters;. I have seen this. I know how to do this with STL. But, I ...

Remove item from C-array and shift
Can't the index of a pointer be used? [code]for(Monster* mptr = monsters; mptr!=monsters+total; m...

Remove item from C-array and shift
Ah, no worries about that. I am just trying to figure out: How I can remove the item from array wh...