typedef void (*Hello)(struct test1 *, test2 *, int a, int b, const int c *, int d);
In this case, I am confused by how to handle the struct as the argument.
I have written:
Hello p1;
(*p1)(....need some arguments to be added here);
Please kindly teach me how to complete this maybe sample code could help.
Thanks