newbie alert.
/n is the same thing as endl he was aksing a prefrence the onyl differ is that you put /n inside the quotes endl is a seperate thing
/n example->
cout << "hello mom /n";
cout << "hello dad";
endl example->
cout << "hello mom" << endl;
cout << "hello dad";
the end resualt sshould be the same
