Memanggil kekosongan di c

#include <stdio.h>

    void print_all(warehouse[][M], float price[], int n);

    int
    main(int argc, char *argv[]) {

        char warehouse[][]; /* whatever your limits are in the arrays */
        float price[];

        print_all(warehouse, price, n);
        return 0;
    }
Powerful Pig