SlideShare uma empresa Scribd logo
1 de 17
Parameter defination.
Types of parameter.
Call by value.
Call by Reference.
Advantages of call by reference.
Disadvantages of call by reference.
    .
PARAMETERS
 A parameter is an intrinsic property of the procedure,
 included in its definition.

 Parameter passing methods are the ways in which
 parameters are transferred between functions when
 one function calls another.

 C++ provides two parameter passing methods--pass-
 by-value and pass-by-reference .
Types of parameter
 Parameters are of two types


    Formal parameters
    Actual parameters
Formal parameters

 Formal parameters are written in the function
 prototype and function header of the definition.

 Formal parameters are local variables which are
 assigned values from the arguments when the function
 is called.
Value Parameter Rules
 Formal parameter is created on function invocation and it is initialized
  with the value of the actual parameter.

 Changes to formal parameter do not affect actual parameter.

 Reference to a formal parameter produces the value for it in the
  current activation record.

 Formal parameter name is only known within its function.

 Formal parameter ceases to exist when the function completes.
Example of Formal Parameters
    Return type     Function name   Formal parameter


                   float CircleArea (float r) {
                   const float Pi = 3.1415;
 Local object
Definition           return Pi * r * r;
                      }

          Return statement         Function body

Actual Parameters

 When a function is called, the values (expressions) that
  are passed in the call are called the arguments or actual
  parameters (both terms mean the same thing).

 The time of the call each actual parameter is assigned to
  the corresponding formal parameter in the function
  definition.
Example of Actual Parameter
                         Actual parameter

cout << CircleArea(MyRadius) << endl



To process the invocation, the function that contains the
insertion statement is suspended and CircleArea()
does its job. The insertion statement is then completed
using the value supplied by CircleArea().
A function can be invoked in 2
ways
Call by value


Call by Reference
Call By Value
 The call by value method copies the values of actual
 parameter in formal parameter.

 That is the function create its own copy of argument
 value and then uses it.
Example of call by value
#include<iostream.h>
int main( )
{ int cube(int);                     Formal Parameter
   int vol,side=7;                        7
     :                      a
    vol=cube(side);
     :                                  value copied
  cout<<vol;
                                 7
Return 0;            side
}                           Actual parameter
int cube(int a)
{ return a*a*a*;
}
Call By Reference

 In call by reference method the called function does
 not create its own copy rather it refers to original value
 only by different name i.e reference.

 When function is called by reference then ,the formal
 parameter become reference or alias to the actual
 parameter in calling function.
Example of Call By Reference
#include <iostream.h>
 void duplicate (int& a, int& b, int& c)
{ a*=2; b*=2; c*=2;
 }
int main ( )
{
  int x=1, y=3, z=7;
  duplicate (x, y, z);
  cout << "x=" << x << ", y=" << y << ", z=" << z;
  return 0;
}
x=2, y=6, z=14
Advantages of passing by
reference:

 It allows us to have the function change the value of
  the argument, which is sometimes useful.
 Because a copy of the argument is not made, it is fast,
  even when used with large structs or classes.
 We can pass by const reference to avoid unintentional
  changes.
 We can return multiple values from a function
Disadvantages of passing by
reference
 It can be hard to tell whether a parameter passed by
  reference is meant to be input, output, or both.
 An argument passed by value and passed by reference
  looks the same. We can only tell whether an argument is
  passed by value or reference by looking at the function
  declaration. This can lead to situations where the
  programmer does not realize a function will change the
  value of the argument.
 Because references are typically implemented by C++ using
  pointers, and dereferencing a pointer is slower than
  accessing it directly, accessing values passed by reference is
  slower than accessing values passed by value.
Parameter passing to_functions_in_c

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

Functions in c++
Functions in c++Functions in c++
Functions in c++
 
virtual function
virtual functionvirtual function
virtual function
 
Pointers in c++
Pointers in c++Pointers in c++
Pointers in c++
 
Function in C program
Function in C programFunction in C program
Function in C program
 
File in C language
File in C languageFile in C language
File in C language
 
Call by value or call by reference in C++
Call by value or call by reference in C++Call by value or call by reference in C++
Call by value or call by reference in C++
 
Functions and modules in python
Functions and modules in pythonFunctions and modules in python
Functions and modules in python
 
Functions in c language
Functions in c language Functions in c language
Functions in c language
 
C functions
C functionsC functions
C functions
 
Presentation on Function in C Programming
Presentation on Function in C ProgrammingPresentation on Function in C Programming
Presentation on Function in C Programming
 
Programming in c Arrays
Programming in c ArraysProgramming in c Arrays
Programming in c Arrays
 
Pointers in c++
Pointers in c++Pointers in c++
Pointers in c++
 
functions of C++
functions of C++functions of C++
functions of C++
 
Array in c++
Array in c++Array in c++
Array in c++
 
Control statements in c
Control statements in cControl statements in c
Control statements in c
 
Modules and packages in python
Modules and packages in pythonModules and packages in python
Modules and packages in python
 
Function in C
Function in CFunction in C
Function in C
 
Function C programming
Function C programmingFunction C programming
Function C programming
 
[OOP - Lec 19] Static Member Functions
[OOP - Lec 19] Static Member Functions[OOP - Lec 19] Static Member Functions
[OOP - Lec 19] Static Member Functions
 
Operators in c programming
Operators in c programmingOperators in c programming
Operators in c programming
 

Semelhante a Parameter passing to_functions_in_c

Classes function overloading
Classes function overloadingClasses function overloading
Classes function overloading
ankush_kumar
 
Chapter_1.__Functions_in_C++[1].pdf
Chapter_1.__Functions_in_C++[1].pdfChapter_1.__Functions_in_C++[1].pdf
Chapter_1.__Functions_in_C++[1].pdf
TeshaleSiyum
 
Chapter 1. Functions in C++.pdf
Chapter 1.  Functions in C++.pdfChapter 1.  Functions in C++.pdf
Chapter 1. Functions in C++.pdf
TeshaleSiyum
 

Semelhante a Parameter passing to_functions_in_c (20)

Classes function overloading
Classes function overloadingClasses function overloading
Classes function overloading
 
Chapter 5
Chapter 5Chapter 5
Chapter 5
 
Functions in C++.pdf
Functions in C++.pdfFunctions in C++.pdf
Functions in C++.pdf
 
16717 functions in C++
16717 functions in C++16717 functions in C++
16717 functions in C++
 
Functions
FunctionsFunctions
Functions
 
User Defined Functions in C
User Defined Functions in CUser Defined Functions in C
User Defined Functions in C
 
Chapter_1.__Functions_in_C++[1].pdf
Chapter_1.__Functions_in_C++[1].pdfChapter_1.__Functions_in_C++[1].pdf
Chapter_1.__Functions_in_C++[1].pdf
 
Chapter 1. Functions in C++.pdf
Chapter 1.  Functions in C++.pdfChapter 1.  Functions in C++.pdf
Chapter 1. Functions in C++.pdf
 
Unit iv functions
Unit  iv functionsUnit  iv functions
Unit iv functions
 
Function in c
Function in cFunction in c
Function in c
 
Ch4 functions
Ch4 functionsCh4 functions
Ch4 functions
 
PSPC-UNIT-4.pdf
PSPC-UNIT-4.pdfPSPC-UNIT-4.pdf
PSPC-UNIT-4.pdf
 
C++ lecture 03
C++   lecture 03C++   lecture 03
C++ lecture 03
 
Python_Unit_2.pdf
Python_Unit_2.pdfPython_Unit_2.pdf
Python_Unit_2.pdf
 
CH.4FUNCTIONS IN C (1).pptx
CH.4FUNCTIONS IN C (1).pptxCH.4FUNCTIONS IN C (1).pptx
CH.4FUNCTIONS IN C (1).pptx
 
CHAPTER THREE FUNCTION.pptx
CHAPTER THREE FUNCTION.pptxCHAPTER THREE FUNCTION.pptx
CHAPTER THREE FUNCTION.pptx
 
Function in c
Function in cFunction in c
Function in c
 
Functions1
Functions1Functions1
Functions1
 
Unit_5Functionspptx__2022_12_27_10_47_17 (1).pptx
Unit_5Functionspptx__2022_12_27_10_47_17 (1).pptxUnit_5Functionspptx__2022_12_27_10_47_17 (1).pptx
Unit_5Functionspptx__2022_12_27_10_47_17 (1).pptx
 
USER DEFINED FUNCTIONS IN C.pdf
USER DEFINED FUNCTIONS IN C.pdfUSER DEFINED FUNCTIONS IN C.pdf
USER DEFINED FUNCTIONS IN C.pdf
 

Mais de ForwardBlog Enewzletter (10)

Sorting searching
Sorting searchingSorting searching
Sorting searching
 
Pn junction
Pn junctionPn junction
Pn junction
 
Feedback amplifiers
Feedback amplifiersFeedback amplifiers
Feedback amplifiers
 
Oscillators
OscillatorsOscillators
Oscillators
 
Compile time polymorphism
Compile time polymorphismCompile time polymorphism
Compile time polymorphism
 
Constructors & destructors
Constructors & destructorsConstructors & destructors
Constructors & destructors
 
Oo ps
Oo psOo ps
Oo ps
 
Propositional logic
Propositional logicPropositional logic
Propositional logic
 
Stack a Data Structure
Stack a Data StructureStack a Data Structure
Stack a Data Structure
 
Presentation on graphs
Presentation on graphsPresentation on graphs
Presentation on graphs
 

Último

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Último (20)

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 

Parameter passing to_functions_in_c

  • 1.
  • 2. Parameter defination. Types of parameter. Call by value. Call by Reference. Advantages of call by reference. Disadvantages of call by reference. .
  • 3. PARAMETERS  A parameter is an intrinsic property of the procedure, included in its definition.  Parameter passing methods are the ways in which parameters are transferred between functions when one function calls another.  C++ provides two parameter passing methods--pass- by-value and pass-by-reference .
  • 4. Types of parameter  Parameters are of two types  Formal parameters  Actual parameters
  • 5. Formal parameters  Formal parameters are written in the function prototype and function header of the definition.  Formal parameters are local variables which are assigned values from the arguments when the function is called.
  • 6. Value Parameter Rules  Formal parameter is created on function invocation and it is initialized with the value of the actual parameter.  Changes to formal parameter do not affect actual parameter.  Reference to a formal parameter produces the value for it in the current activation record.  Formal parameter name is only known within its function.  Formal parameter ceases to exist when the function completes.
  • 7. Example of Formal Parameters Return type Function name Formal parameter float CircleArea (float r) { const float Pi = 3.1415; Local object Definition return Pi * r * r; }  Return statement Function body 
  • 8. Actual Parameters  When a function is called, the values (expressions) that are passed in the call are called the arguments or actual parameters (both terms mean the same thing).  The time of the call each actual parameter is assigned to the corresponding formal parameter in the function definition.
  • 9. Example of Actual Parameter Actual parameter cout << CircleArea(MyRadius) << endl To process the invocation, the function that contains the insertion statement is suspended and CircleArea() does its job. The insertion statement is then completed using the value supplied by CircleArea().
  • 10. A function can be invoked in 2 ways Call by value Call by Reference
  • 11. Call By Value  The call by value method copies the values of actual parameter in formal parameter.  That is the function create its own copy of argument value and then uses it.
  • 12. Example of call by value #include<iostream.h> int main( ) { int cube(int); Formal Parameter int vol,side=7; 7 : a vol=cube(side); : value copied cout<<vol; 7 Return 0; side } Actual parameter int cube(int a) { return a*a*a*; }
  • 13. Call By Reference  In call by reference method the called function does not create its own copy rather it refers to original value only by different name i.e reference.  When function is called by reference then ,the formal parameter become reference or alias to the actual parameter in calling function.
  • 14. Example of Call By Reference #include <iostream.h> void duplicate (int& a, int& b, int& c) { a*=2; b*=2; c*=2; } int main ( ) { int x=1, y=3, z=7; duplicate (x, y, z); cout << "x=" << x << ", y=" << y << ", z=" << z; return 0; } x=2, y=6, z=14
  • 15. Advantages of passing by reference:  It allows us to have the function change the value of the argument, which is sometimes useful.  Because a copy of the argument is not made, it is fast, even when used with large structs or classes.  We can pass by const reference to avoid unintentional changes.  We can return multiple values from a function
  • 16. Disadvantages of passing by reference  It can be hard to tell whether a parameter passed by reference is meant to be input, output, or both.  An argument passed by value and passed by reference looks the same. We can only tell whether an argument is passed by value or reference by looking at the function declaration. This can lead to situations where the programmer does not realize a function will change the value of the argument.  Because references are typically implemented by C++ using pointers, and dereferencing a pointer is slower than accessing it directly, accessing values passed by reference is slower than accessing values passed by value.