I have a struct variable
struct Var var;
and a function which is from a library
void func(struct Var ** ){}
now I want to call this function can I use
func(&&var);
if so, is there anything to be cautious? if not, any solutions?
thanks!