Purchase Solution

Parameter Passing in C

Not what you're looking for?

Ask Custom Question

I do not have any experience in C or C++ so I am struggling with understanding what the parameter passing of these are.

Consider the following program written in C syntax:
void main() {
int value = 2, list[5] = {1, 3, 5, 7, 9);
swap(value, list[0]);
swap(list[0], list[1);
swap(value, list[value]);
}
void swap(int a, int b){
int temp;
temp = a;
a = b;
b = temp;
}
For each of the following parameter-passing methods, what are all
of the values of the variables value and list after each of the three
calls to swap?
a. Passed by value
b. Passes by reference
c. Passes by value-result
Assume the calls are not accumulative; that is, they are always
called with the initialized values of the variables, so their effects are
not accumulative.

Purchase this Solution

Solution Preview

(a) Passed by value
The swap function is passed by value. It means that the values passed
to swap have another copy and is used in the swap function. Any change
of the variables in swap won't affect the variables from the caller.
So after three calls to swap, all variables maintain the same values.
...

Purchase this Solution


Free BrainMass Quizzes
Word 2010: Tables

Have you never worked with Tables in Word 2010? Maybe it has been a while since you have used a Table in Word and you need to brush up on your skills. Several keywords and popular options are discussed as you go through this quiz.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.

Word 2010: Table of Contents

Ever wondered where a Table of Contents in a Word document comes from? Maybe you need a refresher on the topic? This quiz will remind you of the keywords and options used when working with a T.O.C. in Word 2010.

Javscript Basics

Quiz on basics of javascript programming language.

C# variables and classes

This quiz contains questions about C# classes and variables.