Whoa! That's a lot of unnecessary (and some nonstandard and/or deprecated) #include s you've got there.
Now, to remove an element from an array, you have to first figure out where that element is in the array (which position), then you move all of the elements after that down a spot (by assigning those elements to the previous array position).
Note that this won't actually shrink the size of the array -- you can't really do that with plain arrays.
Or you could just switch over to std::vector (whose header you've unfortunately neglected to #include ) and use the erase member function after you've figured out which position the element is at.