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 / INTRO34.CPP < prev    next >
C/C++ Source or Header  |  1992-02-18  |  428b  |  22 lines

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