I want to write a function prototype for a function, whose argument is a pointer to a struct.
int mult(struct Numbers *n)
However, the str
Just declare struct Numbers as an incomplete type before your function declaration:
struct Numbers
struct Numbers; int mult(struct Numbers *n);