i have a question concerning this code:
void LCDif::m_Entm()
{
cout<<"Enter your message now: "<<endl;
cin.getline(arcMess,100);
cin.getline(arcMess,100);
}
there is also a menu system before this member function. I would like to know why is i only use one cin.getline.. it will not even prompt me to enter in the array, but if i use two it works great.. any ideas? (before i go to this fnction i get the user to enter some intergers for a basic menu system)
Thanks for your Help
void LCDif::m_Entm()
{
cout<<"Enter your message now: "<<endl;
cin.getline(arcMess,100);
cin.getline(arcMess,100);
}
there is also a menu system before this member function. I would like to know why is i only use one cin.getline.. it will not even prompt me to enter in the array, but if i use two it works great.. any ideas? (before i go to this fnction i get the user to enter some intergers for a basic menu system)
Thanks for your Help