Doubt in the part 1:39:00 of the webinar

instead of int a[][] as the argument, can we pass int *a[][] ?
please reply soon

Hey @Tiwary725 if you dont know the second argument than you cannot pass using *arr[][], only way arround is to pass *arr and access (i, j) element with ((arr+in) + j)) if a row has n elements.

I am sorry I couldn’t get what you explained. could you please explain it more clearly?

Hey @Tiwary725
When you write int a[][] it is an array of integers. But when you write int *a[][] it means an array of integer pointers. So these 2 are different.

Hey @Tiwary725
If your doubt is resolved, please mark it as resolved. Thanks and best of luck !!