You won't be able to do it without providing a lot of assistance to the called function so that it can do its job. Look at the two 'polymorphic' functions in the standard C library, qsort() and bsearch().
void qsort(void *base, size_t nel, size_t width,
int (*compar)(const void *, const void *));
void *bsearch(const void *key, const void *base, size_t nel,
size_t width, int (*compar)(const void *, const void *));
The printf() and scanf() families are the other functions that handle multiple types.
Your print array function would likely need:
typedef int (*DataPrinter)(void *ctxt, void *data);
extern int prarray(void *base, size_t nel, size_t width,
DataPrinter pr_func, void *ctxt)
The data printer function pointer would be responsible for printing one value — specified by the data parameter. The ctxt value is a pointer to whatever control information the data printer function needs (it might be as simple as a FILE *, it might be more complex). The value returned from the data printer function is the number of characters written; the value returned from prarray() is the total number of characters written.
This only works for 1-dimensional arrays, of course. For printing subsections of a 2D or 3D array, you need more complicated code. If you need to worry about line breaks and the like, that is likely to be the domain of the ctxt. Or you devise more complicated interfaces to this function. Note that the only mechanism provided for specifying a value separator is via the ctxt structure. This will work (or can be made to work), but it may be too clumsy.
The C2011 solution with _Generic is interesting, but requires N functions for N types, each of which handles printing an array. I can't wriggle out completely: my solution requires N+1 functions, but only one of them (the 1) deals with arrays; the N functions each deal with printing a single value of a given type, which is a simpler process than printing the whole array of the given type. Of course, as noted, it requires a C 2011 compiler on every platform of relevance. Since at least one of the 'often relevant' platforms doesn't have a C 1999 compiler from its supplier, it may be a while before you can use C 2011 on that platform.
void *– Firegun Oct 6 '12 at 0:07