home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / EXAMPLES / EX0403.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-13  |  213 b   |  16 lines

  1. // \EXAMPLES\ex0403.cpp
  2.  
  3. #include <iostream.h>
  4.  
  5. int add( int i, int j) {
  6.    return i + j;
  7. }
  8.  
  9. void print_val(int i) {
  10.    cout << "Here is i " << i << endl;
  11. }
  12.  
  13. void main() {
  14.    print_val(add(3,2));
  15. }
  16.