fungsi pointer param ke prototipe struct di c

struct Numbers;

int mult(struct Numbers *n) {

}

struct Numbers {
    int a;
    int b;
    int c;
};
Salsabeel woh woh