English
Tamil Nadu Board of Secondary EducationHSC Science Class 11

Explain Call by value method with suitable example. - Computer Science

Advertisements
Advertisements

Question

Explain Call by value method with a suitable example.

Answer in Brief

Solution

Call by value method:

This method copies the value of an actual parameter into the formal parameter of the function. In this case, changes made to the formal parameter within the function will have no effect on the actual parameter.

Example:
#include <iostream>
using namespace std;
void display(int x)
{
int a = x * x;
cout<<“\n\nThe Value inside display function
(a * a):”<<a;
}
int main( )
{
int a;
cout<<“\nExample : Function call by value:”;
cout<<“\n\nEnter the Value for A cin>>a;
display(a);
cout<<”\n\nThe Value inside main function “<<a;
return (0);
}
Output:
Example: Function call by value Enter the Value for A: 5
The Value inside display function (a * a) : 25
The Value inside main function 5

shaalaa.com
Methods of Calling Functions
  Is there an error in this question or solution?
Chapter 11: Functions - Evaluation - Section - D [Page 205]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 11 TN Board
Chapter 11 Functions
Evaluation - Section - D | Q 1. | Page 205
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×