Introducing 

Prezi AI.

Your new presentation assistant.

Refine, enhance, and tailor your content, source relevant images, and edit visuals quicker than ever before.

Loading…
Transcript

Methods

of Calling

Function

In C++, the arguments can be passed to a function in two ways. Based on the method of passing the arguments, the function calling methods can be classified as :

Methods of calling function

  • Call by Value method

  • Call by Reference or Address method.

Classification

This method copies the value of an actual parameter into the formal parameter of the function.

In this case, changes made to formal parameter within the function will have no effect on the actual parameter.

Call by value Method

Example

Example

Output

Quiz

1. Why variables remain unchanged even after the swap?

Quiz 1

The reason is same – function is called by value for num1 & num2. So actually var1 and var2 gets swapped (not num1 & num2). As in call by value actual parameters are just copied into the formal parameters.

answer

Quiz

2. In call by value, original value can not be changed or modified.

True or False

Quiz 2

True

answer

Learn more about creating dynamic, engaging presentations with Prezi