|
|
void printarray(int thearray[], int sizeofarray);void printArray(int [], int ); |
|
|
|
| Inspireftw wrote: |
|---|
So for the first part, your function prototype,void printarray(int thearray[], int sizeofarray);Should look like this: void printArray(int [], int );
|