I've been having problems with getline lately everytime i use getline it just skips over it...
Code:
CODE:
string name;
int age;
string About;
cout << "Your name: ";
getline(cine, name, '\n');
cout << "Age: ";
cin >> age;
cout << "About Yourself: ";
getline(cin, About, '\n');

OUTPUT:
Your name: Martin Bakiev
Age: 14
About Yourself: Press any key to continue...
Whats wrong with it!