473,545 Members | 2,081 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how do you pass an array by value

I wrote a function foo(int arr[]) and its prototype
is declared as foo(int arr[]); I modify the values of the array in the
function and the values are getting modified in the main array which
is passed also. I understand that this way of passing the array is by
value and if the prototype is declared as foo(int *), it is by
reference in which case the value if modified in the function will get
reflected in the main function as well. I dont understand why the
values are getting modified in the main function though there is pass
by value. Is pass by value for arrays not there any more?
With Regards,
Abhishek S

Mar 24 '07 #1
14 20374
Abhi wrote:
I wrote a function foo(int arr[]) and its prototype
is declared as foo(int arr[]); I modify the values of the array in the
function and the values are getting modified in the main array which
is passed also. I understand that this way of passing the array is by
value and if the prototype is declared as foo(int *), it is by
reference in which case the value if modified in the function will get
reflected in the main function as well. I dont understand why the
values are getting modified in the main function though there is pass
by value. Is pass by value for arrays not there any more?
It was never there for arrays. For a function parameter (and /only/
for a function parameter), a declaration as an array type gets
converted to a declaration as a pointer type. This happens always, and
cannot be bypassed.

void f(int *p) { *p = 1; }

is equivalent to

void f(int p[]) { *p = 1; }

When you call a function, and you try to pass it an array, this array
will be converted to a pointer to the first element of the array.

void g(void) { int i[2]; f(i); }

is equivalent to

void g(void) { int i[2]; f(&i[0]); }

A workaround is to not use an array as a function parameter. You can
use a structure containing an array for that.

struct Array {
int element[100];
} a;

void f(struct Array arr) { arr.element[0] = 1; }

int main(void) {
a.element[0] = 0;
f(a);
return a.element[0];
}

This will return with an exit status of 0, because f is passed a copy
of a, so a.element[0] remains unmodified.

Mar 24 '07 #2
Abhi wrote:
I wrote a function foo(int arr[]) and its prototype
is declared as foo(int arr[]); I modify the values of the array in the
function and the values are getting modified in the main array which
is passed also. I understand that this way of passing the array is by
value and if the prototype is declared as foo(int *), it is by
reference in which case the value if modified in the function will get
reflected in the main function as well. I dont understand why the
values are getting modified in the main function though there is pass
by value. Is pass by value for arrays not there any more?
With Regards,
Abhishek S
Well, arrays can't be passed by value in C. What you believe as pass
by value is not so. What is actually passed to the function is a
pointer to the first element of the array. Therefore you modify the
original copy of the array through this pointer. The array indexing
notation is nothing but a form of syntactic sugar for the underlying
pointer arithmetic.

So, you're misinformed when you say that arrays are passed by value.
In fact the two forms of passing an array to a function, which you've
shown above, are virtually identical.

Mar 24 '07 #3

"Abhi" <ab************ *@gmail.comha scritto nel messaggio
news:11******** **************@ p15g2000hsd.goo glegroups.com.. .
I wrote a function foo(int arr[]) and its prototype
is declared as foo(int arr[]); I modify the values of the array in the
function and the values are getting modified in the main array which
is passed also. I understand that this way of passing the array is by
value and if the prototype is declared as foo(int *), it is by
reference in which case the value if modified in the function will get
reflected in the main function as well. I dont understand why the
values are getting modified in the main function though there is pass
by value. Is pass by value for arrays not there any more?
With Regards,
Abhishek S
Try using malloc and memcpy to duplicate the array, perform the operations
on the copy, and then free it.
BTW I guess you need to pass the length of the array as a parameter, because
otherwise the function won't have any way to know how long the array is.
(int arr[] only passes &arr[0], period.)
Mar 24 '07 #4
Abhi wrote:
>
I wrote a function foo(int arr[]) and its prototype
is declared as foo(int arr[]); I modify the values of the array in the
function and the values are getting modified in the main array which
is passed also. I understand that this way of passing the array is by
value and if the prototype is declared as foo(int *), it is by
reference in which case the value if modified in the function will get
reflected in the main function as well. I dont understand why the
values are getting modified in the main function though there is pass
by value. Is pass by value for arrays not there any more?
"pass by value for arrays" was never there.

foo(int arr[]) means the exact same thing as foo(int *arr).

--
pete
Mar 24 '07 #5
Abhi wrote:
I wrote a function foo(int arr[]) and its prototype
is declared as foo(int arr[]); I modify the values of the array in the
function and the values are getting modified in the main array which
is passed also. I understand that this way of passing the array is by
value and if the prototype is declared as foo(int *), it is by
reference in which case the value if modified in the function will get
reflected in the main function as well. I dont understand why the
values are getting modified in the main function though there is pass
by value. Is pass by value for arrays not there any more?
It never was there: arrays are not [r]values in C and never have
been. In value context an array decays into a pointer to its
first element.

[And this is not the same as pass-by-reference, either]

--
Saturday Hedgehog
Scoring, bah. If I want scoring I'll go play /Age of Steam/.

Mar 24 '07 #6
Chris Dollin wrote:
Abhi wrote:
> I wrote a function foo(int arr[]) and its prototype
is declared as foo(int arr[]); I modify the values of the array in the
function and the values are getting modified in the main array which
is passed also. I understand that this way of passing the array is by
value and if the prototype is declared as foo(int *), it is by
reference in which case the value if modified in the function will get
reflected in the main function as well. I dont understand why the
values are getting modified in the main function though there is pass
by value. Is pass by value for arrays not there any more?

It never was there: arrays are not [r]values in C and never have
been. In value context an array decays into a pointer to its
first element.

[And this is not the same as pass-by-reference, either]
Nevertheless, there is a widespread belief (based on limited experience)
that languages which are normally implemented with C ABI compatibility
(e.g. Fortran) require pass-by-reference.
Mar 24 '07 #7
"Abhi" <ab************ *@gmail.comwrot e:
# I wrote a function foo(int arr[]) and its prototype
# is declared as foo(int arr[]); I modify the values of the array in the
# function and the values are getting modified in the main array which
# is passed also. I understand that this way of passing the array is by
# value and if the prototype is declared as foo(int *), it is by
# reference in which case the value if modified in the function will get
# reflected in the main function as well. I dont understand why the
# values are getting modified in the main function though there is pass
# by value. Is pass by value for arrays not there any more?

What is passed by value is the pointer to the array contents.
Changes to this pointer (like a++ or --a) itself do not propagate
back to the caller. The array contents are not passed, just the
array pointer. Changes through the pointer (like *a = x) can be
visible to the caller. If you want the function to work on a copy
of the array, generally you pass the array pointer and length
and have the function explicitly copy to a local variable.

--
SM Ryan http://www.rawbw.com/~wyrmwif/
Raining down sulphur is like an endurance trial, man. Genocide is the
most exhausting activity one can engage in. Next to soccer.
Mar 24 '07 #8
Tim Prince wrote:
Chris Dollin wrote:
>It never was there: arrays are not [r]values in C and never have
been. In value context an array decays into a pointer to its
first element.

[And this is not the same as pass-by-reference, either]
Nevertheless, there is a widespread belief (based on limited experience)
that languages which are normally implemented with C ABI compatibility
(e.g. Fortran) require pass-by-reference.
Languages which require pass-by-reference implement pass-by-reference.
What that has to do with any C ABI I'm not sure: no such has pass-by-
reference arguments, although it may have pointers passed-by-value.
If some other language interfacing to that ABI uses its pass-by-reference
parameters to do so, that's its business.

--
second Jena user conference! http://hpl.hp.com/conferences/juc2007/
"You've spotted a flaw in my thinking, Trev." Big Al, /The Beiderbeck Connection/

Hewlett-Packard Limited registered no:
registered office: Cain Road, Bracknell, Berks RG12 1HN 690597 England

Mar 26 '07 #9
Hello,

Thanks for all those enthusiastic responses. I came across this
answer to FAQs in one of the books on C programming and this is the
paer after reading which, I did the experiment. Please read this. Its
simple and now is it contrary to what you have told?
/////////////////////////////////////////////////////

VIII.6: How can you pass an array to a function by value?
Answer:
An array can be passed to a function by value by declaring in the
called function the array name with square
brackets ([ and ]) attached to the end. When calling the function,
simply pass the address of the array (that
is, the array's name) to the called function. For instance, the
following program passes the array x[] to the
function named byval_func() by value:
#include <stdio.h>
void byval_func(int[]); /* the byval_func() function is passed an
integer array by value */
void main(void);
void main(void)
{
int x[10];
int y;
/* Set up the integer array. */
for (y=0; y<10; y++)
x[y] = y;
/* Call byval_func(), passing the x array by value. */
byval_func(x);
}
/* The byval_function receives an integer array by value. */
void byval_func(int i[])
{
int y;
/* Print the contents of the integer array. */
for (y=0; y<10; y++)
printf("%d\n", i[y]);
}
In this example program, an integer array named x is defined and
initialized with 10 values. The function
byval_func() is declared as follows:
int byval_func(int[]);
C Programming: 168 Just the FAQs
The int[] parameter tells the compiler that the byval_func() function
will take one argument-an array
of integers. When the byval_func() function is called, you pass the
address of the array to byval_func():
byval_func(x);
Because the array is being passed by value, an exact copy of the array
is made and placed on the stack. The
called function then receives this copy of the array and can print it.
Because the array passed to byval_func()
is a copy of the original array, modifying the array within the
byval_func() function has no effect on the
original array.
Passing arrays of any kind to functions can be very costly in several
ways. First, this approach is very inefficient
because an entire copy of the array must be made and placed on the
stack. This takes up valuable program
time, and your program execution time is degraded. Second, because a
copy of the array is made, more
memory (stack) space is required. Third, copying the array requires
more code generated by the compiler,
so your program is larger.
Instead of passing arrays to functions by value, you should consider
passing arrays to functions by reference:
this means including a pointer to the original array. When you use
this method, no copy of the array is made.
Your programs are therefore smaller and more efficient, and they take
up less stack space. To pass an array
by reference, you simply declare in the called function prototype a
pointer to the data type you are holding
in the array.
Consider the following program, which passes the same array (x) to a
function:
#include <stdio.h>
void const_func(cons t int*);
void main(void);
void main(void)
{
int x[10];
int y;
/* Set up the integer array. */
for (y=0; y<10; y++)
x[y] = y;
/* Call const_func(), passing the x array by reference. */
const_func(x);
}
/* The const_function receives an integer array by reference.
Notice that the pointer is declared as const, which renders
it unmodifiable by the const_func() function. */
void const_func(cons t int* i)
{
int y;
/* Print the contents of the integer array. */
Chapter VIII · Functions 169
for (y=0; y<10; y++)
printf("%d\n", *(i+y));
}
In the preceding example program, an integer array named x is defined
and initialized with 10 values. The
function const_func() is declared as follows:
int const_func(cons t int*);
The const int* parameter tells the compiler that the const_func()
function will take one argument-a
constant pointer to an integer. When the const_func() function is
called, you pass the address of the array
to const_func():
const_func(x);
Because the array is being passed by reference, no copy of the array
is made and placed on the stack. The called
function receives simply a constant pointer to an integer. The called
function must be coded to be smart
enough to know that what it is really receiving is a constant pointer
to an array of integers. The const modifier
is used to prevent the const_func() from accidentally modifying any
elements of the original array.
The only possible drawback to this alternative method of passing
arrays is that the called function must be
coded correctly to access the array-it is not readily apparent by the
const_func() function prototype or
definition that it is being passed a reference to an array of
integers. You will find, however, that this method
is much quicker and more efficient, and it is recommended when speed
is of utmost importance.
///////////////////////////////////////////////////////////////////////////////////////////////////
What is this copy of the araay made on the stack all about?
:-)

With Regards,
Abhishek S

On Mar 26, 9:47 am, Chris Dollin <chris.dol...@h p.comwrote:
Tim Prince wrote:
Chris Dollin wrote:
It never was there: arrays are not [r]values in C and never have
been. In value context an array decays into a pointer to its
first element.
[And this is not the same as pass-by-reference, either]
Nevertheless, there is a widespread belief (based on limited experience)
that languages which are normally implemented with C ABI compatibility
(e.g. Fortran) require pass-by-reference.

Languages which require pass-by-reference implement pass-by-reference.
What that has to do with any C ABI I'm not sure: no such has pass-by-
reference arguments, although it may have pointers passed-by-value.
If some other language interfacing to that ABI uses its pass-by-reference
parameters to do so, that's its business.

--
second Jena user conference! http://hpl.hp.com/conferences/juc2007/
"You've spotted a flaw in my thinking, Trev." Big Al, /The Beiderbeck Connection/

Hewlett-Packard Limited registered no:
registered office: Cain Road, Bracknell, Berks RG12 1HN 690597 England

Mar 28 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
3123
by: Seeker | last post by:
Newbie question here... I have a form with some radio buttons. To verify that at least one of the buttons was chosen I use the following code ("f" is my form object) : var btnChosen; for (count = 0; count <= 1; count++) { if (eval(f.RadioButtons.checked)) { btnChosen = true; }
6
1793
by: Kenny | last post by:
Hello, can anyone tell me how to pass an array to a function ? I have this function , part of my class. It works if I do not put in int a everywhere , but obviously , I need to add an array so I can keep everything neat and tidy, And to call the array whenever I want thanks kenny
1
7657
by: Mark Dicken | last post by:
Hi All I have found the following Microsoft Technet 'Q' Article :- Q210368 -ACC2000: How to Pass an Array as an Argument to a Procedure (I've also copied and pasted the whole contents into the bottom of this email)
5
3407
by: wilson | last post by:
Dear all, In this time, I want to pass array to function. What should I declare the parameter in the function?i int array or int array? Which one is correct? /******************************************************** Below is my code: ********************************************************/
10
9126
by: nospam | last post by:
Hello! I can pass a "pointer to a double" to a function that accepts double*, like this: int func(double* var) { *var=1.0; ... }
9
2306
by: Alan Silver | last post by:
Hello, I'm a bit surprised at the amount of boilerplate code required to do standard data access in .NET and was looking for a way to improve matters. In Classic ASP, I used to have a common function that was included in all pages that took an SQL query and returned a disconnected recordset. This meant that data access could be achieved in...
3
2483
by: QQ | last post by:
I have one integer array int A; I need to pass this array into a function and evaluate this array in this function how should I pass? Is it fine? void test(int *a)
4
4329
by: IRC | last post by:
hey, i am pretty new on javascript as well as PHP, Hey, anyone can you help me, how to pass the javascript array value to php page......... i want to retrieve the values which are arrayed on "selectedValues" from next page for php variable this is my javascript code saved on "sendValue.js" file, <script> function...
11
3336
by: venkatagmail | last post by:
I have problem understanding pass by value and pass by reference and want to how how they are or appear in the memory: I had to get my basics right again. I create an array and try all possible ways of passing an array. In the following code, fun1(int a1) - same as fun1(int* a1) - where both are of the type passed by reference. Inside this...
0
7468
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7401
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7656
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7808
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7423
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7757
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
3450
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1884
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1014
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.