home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
listings
/
v_08_08
/
8n08077a
< prev
next >
Wrap
Text File
|
1990-07-18
|
639b
|
27 lines
function_3(array_parameter)
int array_parameter[];
{
int local_array[10];
/* The following two statements perform the same thing */
array_parameter[1] = 5;
*(array_parameter + 1) = 5;
}
function_4(array_parameter)
int *array_parameter;
{
int local_array[10];
/* The following two statements perform the same thing */
*(array_parameter + 1) = 5;
array_parameter[1] = 5;
}
calling_function()
{
int array_passed[10];
function_3(array_passed);
function_4(array_passed);
}