i am writeing a new program, it has no errors but wen i'm
working with it, there's a part that asks 4 info from the user like
Code:
cout<<"First name: \n";
cin.getline(fstname, 90);
cout<<"Last name: \n";
cin.getline(lstname, 90);
both appear after each other the 1st one don't wait till the user
press enter they appear as:
First name:
Last name:
_

what shall i do?