Void func1(int (*a)[10]){ printf("Ok it works");}void func2(int a[][10]){ printf("Will this work?");} main() { int a[10][10]; func1(a); func2(a);}

A) Ok it worksWill this work?
B) Will this work?
C) Ok it works
D) None of the above

Showing Answers 1 - 2 of 2 Answers

visitor

  • Mar 3rd, 2006
 

Ok it works Will this work?

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions