hey! i can’t understand the difference b/w the way we are declaring 1-d array and 2-d array in called function after they are passed from the main() function:for ex:
void function_name(char*a)
while the 2-d array is declared as :
void function_name(char a[][])
Basically,i cant understand why we are using a star with 1-d array and not 2-d array??