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

  1. C compilers and libraries use identifiers that begin with
  2. underscores.  For this reason, it is best to avoid identifiers
  3. that begin with underscores in your own code.  Similarly, you
  4. should avoid using identifiers that have two consecutive
  5. underscores.  C++ compilers use this kind of identifier, and
  6. the name of your identifier could conflict with the name
  7. of a compiler-defined identifier.
  8.