Which of the following will be the correct function call for-03276
Which of the following will be the correct function call for function prototype given below?<br>int func (int &);
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Mid Term - Quiz No.18.
Which of the following will be the correct function call for function prototype given below?
int func (int &);
int func (int &);
func(int num);
func(&num);
func(num);
func(*num);