home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ for Dummies (3rd Edition)
/
C_FD.iso
/
C__FD.EXE
/
C++ FD
/
CHAP04
/
CHAP04_3.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-09-02
|
278 b
|
14 lines
// Chap04_3.c
void changeArgument(int &refI) //just add the ampersand squiggle
{
refI = 10; //looks like a normal assignment
}
int main()
{
int i = 5;
changeArgument(i); //no change to the call
//the value of i is now 10
return 0;
}