home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoftware Monthly 19…2 Programming Power Tools
/
MASO9512.ISO
/
cpptutor
/
cpptutor.arj
/
EXAMPLES
/
EX0409.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-10-27
|
281 b
|
15 lines
// \EXAMPLES\ex0409.cpp
#include <iostream.h>
void change_array(int* array, int i) {
array[i]++;
}
void main() {
int array[] = {1, 2, 3, 4};
change_array(array, 2);
cout << "Here is the value of element 2: "
<< array[2]
<< endl;
}