My problem here is I don\'t know how to insert a rule wherein if a user inputted a number on the string, it will cout a warning saying it\'s not valid, same wit
cout
cout << "\n Enter number : "; cin >> ch; while (!cin) { cout << "\n ERROR, enter a number" ; cin.clear(); cin.ignore(256,'\n'); cin >> ch; }