56 - CALL BY VALUE & CALL BY REFERENCE (PARAMETER PASSING TECHNIQUES) - C PROGRAMMING

There are two methods to pass the parameters as arguments to functions 1) Call by Value 2) Call by Reference In Call by Value both actual and formal parameters will have different memory locations and In Call by Reference both actual and formal parameters will share common memory location.