0
808views
What is Call by Value and Call by Reference?
1 Answer
0
4views

In general, the parameter passing in C is by value rather than by address, but passing the parameter by value generally creates ambiguity. So, the technique of call by reference came in to picture which maintains persistence in the data stored by the variables. To understand consider the example:

#include<stdio.h> …

Create a free account to keep reading this post.

and 3 others joined a min ago.

Please log in to add an answer.