First page Back Continue Last page Summary Graphic

Example of Command Interpreter

  • char cmd;
  • cin >> cmd;
  • while (!cin.eof()) {
  • // process the command
  • cin >> cmd;
  • }