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

  1. The name of the union, such as the identifier score, is optional.
  2. You can omit it if there is only one object of that type.  If you
  3. also omit the name of the object, it becomes an anonymous union.
  4. The object has no name, but the names of its members are defined
  5. in the scope of the block where the union is declared.  A data
  6. member in an anonymous union must not have the same name as an
  7. identifier in the enclosing scope.
  8.