I'm wondering why it prints so many spaces when I only ask it to print one. Here's the code:
#include <iostream>
#include <string>
using namespace std;
string ar[21] = " ";
int main()
{
ar[3] = "M";
ar[4] = "n";
for(unsigned int i=0 ; i<20 ; i++)
{
cout << ar[i] << ", ";
}
system("PAUSE");
}