Question: Consider the following code. Which statement is the correct way to call the function foo? void foo ( int z [] ); int x[100]; A.
Consider the following code. Which statement is the correct way to call the function foo?
void foo ( int z [] );
int x[100];
A. foo (x)
B. foo (x[])
c. foo(x [100]))
d. foo (&x)
e. foo (&x [] )
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
