home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / TC-300 / EXAMPLES / INTRO25.CPP < prev    next >
C/C++ Source or Header  |  1992-02-17  |  399b  |  24 lines

  1. //INTRO25.CPP--Example from Chapter 3, "An Introduction to C++"
  2.  
  3. #include <iostream.h>
  4. #include <string.h>
  5. #include <conio.h>
  6.  
  7. int main()
  8. {
  9.   int i;
  10.   char text[80];
  11.  
  12.   cout << "Type \"end\" to quit\n";
  13.  
  14.   for(cin.getline(text,80);strcmp(text,"end") !=0; cin.getline(text,80))
  15.   {
  16.      for(i = 1; i <= strlen(text); i++)
  17.      {
  18.       cout << "-";
  19.      }
  20.   cout << '\n';
  21.   }
  22.  
  23.   return 0;
  24. }