home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / TCPP30-3.ZIP / EXAMPLES.ZIP / INTRO29.CPP < prev    next >
C/C++ Source or Header  |  1992-02-18  |  471b  |  24 lines

  1. //INTRO29.CPP--Example from Chapter 3, "An Introduction to C++"
  2.  
  3. #include <iostream.h>
  4. #include <string.h>
  5.  
  6.  
  7. int main()
  8. {
  9.     char string[80];              // Has 79 usable elements
  10.     int pos, num_chars;
  11.  
  12.     cout << "Enter a string for the character array: ";
  13.     cin.get(string,80,'\n');
  14.     cout << "How many characters do you want to extract? ";
  15.     cin >> num_chars;
  16.  
  17.  
  18.     for (pos = 0; pos < num_chars; pos++)
  19.     cout << string[pos];
  20.     cout << '\n';
  21.  
  22.     return 0;
  23. }
  24.