0
What will be the declaration of a function which has a 2d array as a parameter...?
4 Antworten
+ 1
It is mostly the same.....
void func(int ** param)
void func(int param[2][2])
is for 2d
+ 1
Example:-
int funct(int myarr[][10]{
blah blah blah...
}
0
This one is for 1D arrays...!