STL Algorithms Modifying Sequence Operations C++ Tutorial

#include 
#include 
#include 
using namespace std;
   
int main()
{
  char str[] = "This is a test.";
  vector v, v2(30);
  unsigned int i;
   
  for(i=0; str[i]; i++) v.push_back(str[i]);
   
  for(i=0; i     cout << v[i] << endl;
  }
  
  remove_copy(v.begin(), v.end(), v2.begin(), ' ');
   
  for(i=0; i  cout << endl << endl;
  
  return 0;
}