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. strange(alpha[0], alpha[1]); B. strange(alpha, beta);
C. strange(alpha[0], beta); D. strange(alpha, beta[0]);

Answer: Option A
Explaination:

 


No Explanation




Discussion

Your Comments Goes here...
NameDiscussion