Computer Science, asked by asmod27, 1 year ago

Write a program for call by value and call by reference.

Answers

Answered by kohinoor99
0

Write a program for call by value and call by reference.

Results in English

मूल्य से कॉल के लिए एक प्रोग्राम लिखने और संदर्भ द्वारा फोन

हिन्दी में नतीजे

Function call by reference in C. The call by reference method ofpassing arguments to a functioncopies the address of an argument into the formal parameter. Inside the function, the address is used to access the actual argument used in thecall. It means the changes made to the parameter affect the passed argument.

Similar questions