home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH03 / A03112.TXT < prev    next >
Encoding:
Text File  |  1993-11-17  |  408 b   |  8 lines

  1. An array is a named set of one or more objects of the same type
  2. that are placed together in memory.  The name of an array is also
  3. an identifier of a pointer to the type of the array.  For example,
  4. in both C and C++, you can use the type char* for a string, or
  5. array, of characters.  The standard libraries of C and C++, and
  6. C++ stream I/O, provide many features for manipulating arrays of
  7. characters.
  8.