answersLogoWhite

0

What is Call by value?

Updated: 8/20/2019
User Avatar

Wiki User

11y ago

Best Answer

when the function is call by value,u are making any changes in formal parameter does not reflect the actuasl parameter.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is Call by value?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What do you call the number?

You call it its value.


What is value parted with?

A value parted with is we call a Credit.


What is value parted?

A value parted with is we call a Credit.


What is the value of a call option on maturity?

The value of a call option on maturity is equal to its intrinsic value.For instance, a call option with a strike price of $10 on maturity and its underlying stock being at $15 will have a value of $5, which is its intrinsic value.


What is difference between call by value and call by refrence?

What_are_the_differences_between_call_by_value_and_call_by_reference


When only a copy of the argument's value is passed into the paremeter variable?

By default, a copy of the argument's value is passed into the parameter variable. This is "call by value" semantics, and the called function can do whatever it wants with the parameter, but it cannot alter the original copy. Sometimes, in C and C++, you can pass the address of the value instead. This is "call by address" semantics, but the called function must be designed to handle it - in this case, the called function can alter the original value. (Actually, it is always "call by value" - what we call "call by address" is simply passing the value of the address, a subtle distinction which is important to understanding the language.)


Call by value in C?

Yes.


Explain the passing parameters as function in Call by Value and Call by Reference and then distinguish between them?

Call by value essentially passes a copy of an object's value whereas call by reference essentially passes the object itself. Pass by reference is the preferred method whenever possible as call by value will automatically invoke the object's copy constructor, which is often unnecessary, especially if the object is not affected by the function call (pass by constant reference).


What do you call the greatest value minus the least value in a set of data?

range


How do you find out the cash value of a policy?

Can I get the answer on line, or do i HAVE to call in? Where can i GET the cash value for my policy?


What do ISDN devices use a call reference value for?

To identify a specific call


How many values you can return by call by value and call by reference at a time?

A function can only return one value, but it can modify its parameters if their type is 'in out' or 'out'.