Parameter Passing Techniques in C/C++ - GeeksforGeeks
www.geeksforgeeks.org › parameter-passingDec 06, 2021 · Pass by reference(aliasing) : This technique uses in/out-mode semantics. Changes made to formal parameter do get transmitted back to the caller through parameter passing. Any changes to the formal parameter are reflected in the actual parameter in the calling environment as formal parameter receives a reference (or pointer) to the actual data. This method is also called as call by reference. This method is efficient in both time and space.