How to call a function without using the function name to send parameters?
Answers
Answered by
2
Answer:
here are two ways to pass parameters in C: Pass by Value, Pass by Reference.
Pass by Value. Pass by Value, means that a copy of the data is made and stored by way of the name of the parameter. ...
Pass by Reference. A reference parameter "refers" to the original data in the calling function.
Explanation:
Similar questions