Posts by alexandre jastrow • 1 point
1 post
-
-1
votes1
answer450
viewsQ: How to do a pointer struct for a function that prints the struct itself in C
I have a structure: struct conteudo{ tipo valor; //valor qualquer void (func*)(void*); //ponteiro para função que imprime a propria estrutura }; I would like to know how to call this function to the…