}
(Choose 1 answer)
void func1(int (*a)[10]){
What is the output of the following code?
printf("8/50-CAP Works");
} void func2(int a[][10]){
printf("What will happen?");
}
int main() {
int a[10][10];func1(a);func2(a);
return 0;
A. Good, It works
B. What will happen?
C. Good, It works What will happen?
D. None of the other choices
9