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

  1. When you call a function in a C++ program, the arguments in the
  2. calling statement, the actual arguments, initialize the arguments
  3. in the function definition, the formal arguments.  Arguments are
  4. sometimes also called parameters or operands.  In this example,
  5. the value of "i" is initialized to 3 when f() is called.
  6.