Programming - Arrays - Discussion

You Are Here :: Home > C++ Language > Arrays - Discussion

 



Q.

Given the following function prototype
void mystry(int list[], int size);
and the declaration
int alpha[50];
Which of the following is a valid call to the function mystry?                         


A. mystry(alpha[50]); B. mystry(alpha[],50);
C. mystry(alpha,50); D. None of these

Answer: Option B
Explaination:

 


No Explanation




Discussion

Your Comments Goes here...
NameDiscussion