For the function

1.9 For the function
int operation (int A[], int n)
{
…
…
}
Which is the appropriate calling statement from main program?
A) s=operation(A[], 6)
B) operation(A, 6)
C) k=operation(A, 6)
D) d=operation(int A, 6)


Leave a Reply