home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib6
/
v_08_08
/
8n08076a
< 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
Text File
|
1995-11-01
|
350 b
|
17 lines
function_1()
{
int good_auto_array[10];
int *integer_pointer;
good_auto_array[1] = 5;
*(good_auto_array + 1) = 5;
/* Point it to meaningful address */
integer_pointer = good_auto_array;
*(integer_pointer+1) = 5;
integer_pointer[1] = 5;
}