Fonction Param Pointer vers le prototype struct en C

struct Numbers;

int mult(struct Numbers *n) {

}

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