View Single Post
  #3 (permalink)  
Old July 3rd, 2008, 07:05 AM
Corax Corax is offline
Registered User
 
Join Date: Jul 2008
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Try
cout << "\n";
or
cout << endl;
instad of
cout "\n";

when using cout always use the << operator when adding elements to the stream.


Reply With Quote