Which of the following function declarations correctly expect an array as the first argument?
Question 1 options:
void f1 (int array, int size);
void f1 (int& array, int size);
void f1 (int array[100], int size);
void f1 (float array[], int size);
All of the above
C and D
A and B
+3
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Which of the following function declarations correctly expect an array as the first argument? Question 1 options: void f1 (int array, int ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » Which of the following function declarations correctly expect an array as the first argument? Question 1 options: void f1 (int array, int size); void f1 (int& array, int size); void f1 (int array[100], int size); void f1 (float array[], int size);