Hi!
Here is my problem:
I want to pass a two dimensional array into a function!
this is my array:
char list[maxRows][maxCols];
this is my function:
void myBubbleSort (char test[][], int end_of_array);
I keep getting compiler-errors, because I don't know how to call the function and how to setup the "function's head" (char test[][]).
Can somebody help me please?
Thanx.
frag patrick.metz@epost.de
Here is my problem:
I want to pass a two dimensional array into a function!
this is my array:
char list[maxRows][maxCols];
this is my function:
void myBubbleSort (char test[][], int end_of_array);
I keep getting compiler-errors, because I don't know how to call the function and how to setup the "function's head" (char test[][]).
Can somebody help me please?
Thanx.
frag patrick.metz@epost.de