(Choose 1 answer)
What is the output of the following code?void func1(int (*a)[10]){
printf("Good, It 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
Exit 13