Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. cout << "Password : ";
  2.             ch = _getch();
  3.             while(ch != 13){ //character 13 is enter
  4.             pass.push_back(ch);
  5.             cout << '*';
  6.             ch = _getch();
  7.             }