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
A
Monday, August 17, 2009
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment