Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

calling of a void in 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;
    }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #calling #void
ADD COMMENT
Topic
Name
1+6 =