home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH12 / A120953.TXT < prev    next >
Encoding:
Text File  |  1993-09-13  |  269 b   |  6 lines

  1. print_int() is called with the argument k. The type of k is
  2. converted from int to unsigned int because that is the type that
  3. print_int() expects.  Because k has a negative value, the value
  4. that is printed by print_int() is different from the value of k in
  5. main().
  6.