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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-09-13
|
213 b
|
16 lines
// \EXAMPLES\ex0403.cpp
#include <iostream.h>
int add( int i, int j) {
return i + j;
}
void print_val(int i) {
cout << "Here is i " << i << endl;
}
void main() {
print_val(add(3,2));
}