home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH11 / A11113.TXT < prev    next >
Encoding:
Text File  |  1993-08-03  |  437 b   |  8 lines

  1. The standard C I/O functions, printf() and scanf(), require a
  2. format string as an argument.  In the format string you specify
  3. the types of the variables that you want to input or output.  If
  4. you decide to change the type of a variable, you have to change
  5. all of the calls to printf() and scanf() that use this variable.
  6. C++, on the other hand, allows you to read in or print out a
  7. variable without having to worry about its type.
  8.