home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / TEXT / COMMONC.11 < prev    next >
Encoding:
Text File  |  1993-11-06  |  378 b   |  13 lines

  1. %F,15,COMMONC.MNU%Constructs_in_C_and_C++ / %F,15,COMMONC.10%Previous / %F,15,COMMONC.12%Next
  2.  
  3.          %C,1%Functions with an Empty Argument List
  4.  
  5. Consider the following function declaration:
  6.  
  7.     %C,1%int %C,5%f%C,1%();
  8.  
  9. In C++, this function declaration means that the function takes no
  10. arguments.  In ANSI C, it could take any number of arguments, of
  11. any type.
  12.  
  13.