Do while loop with a input manipulator : Do While « Language « C++






Do while loop with a input manipulator

Do while loop with a input manipulator

#include <iostream>
#include <cstring>
using namespace std;


istream &getpass(istream &stream)
{
  cout << '\a';  // sound bell
  cout << "Enter password: ";

  return stream;
}

int main()
{
  char pw[80];

  do {
    cin >> getpass >> pw;
  } while (strcmp(pw, "password"));

  cout << "Logon complete\n";

  return 0;
}

           
       








Related examples in the same category

1.Do while loop with double value typeDo while loop with double value type
2.Do while statementDo while statement