In this video , we are going to discuss about passing parameters to functions.
Summary:
There are 2 ways to pass parameters to functions.
Sending values of variables --- Call by value
Sending Addresses of variables --- Call by reference
In call by value, actual variables are copied into function variables.
In call by reference, addresses of actual variables are copied into function variables.
If you don't want original variables to be modified , use call by value.
If you want original variables to be modified, use call by reference.
Audio language : Hindi
In this course , we are going to cover all C concepts in simple and easy to understand terms.
This course will start from basics and later on we will cover advance topics that are important from interview point of view.
Github : https://github.com/TechCourses4u/C-La...
Programs :
https://github.com/TechCourses4u/C-La...