काल बाई रेफरेंस से आप क्या समझते हैं? उदाहरण सहित समझाइए।
Answers
Answered by
0
Call By Reference:
Explanation:
Call By Reference is a term in which the address of any variable or object is passed as an argument of the function at the time of call the function.
For Example in c language,
void fun(int *p) //function definition
{
//statement
}
void main()
{
int a =4;//variable
fun(&a);//calling a function with passing call by refrence value.
}
Learn More:
- Call By Reference : https://brainly.in/question/8985981
Similar questions