B A. Good, It works
B. What will happen?
D C. Good, It works What will happen?
D. None of the other choices
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;
FUS