Home » C Programming » Functions

Functions can be called either by value or reference

Correct Answer: True

Explanation:

True, A function can be called either call by value or call by reference.


Example:


Call by value means c = sub(a, b); here value of a and b are passed.


Call by reference means c = sub(&a, &b); here address of a and b are passed.


← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion