I have a problem with outputing info to a file... my code is:

while (int i = 0; i < 5; i++)
{
outfile << "Blah" << endl;
}

it outputs this to a file


blah
blah
blah
blah
blah
<------- and it creates a blank line here....

my question is how do i not create a blank line there..