Which of the following function call is call by reference for-02607
Which of the following function call is "call by reference" for the following function prototype?
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Final Term - Quiz No.9.
Which of the following function call is "call by reference" for the following function prototype?
func(int &num);
func(&num);
func(*num);
func(num);