#include <windows.h>
void rbk(void);
int tq(void);
void rbk(void)
{
MessageBox(NULL, "Esto es un puntero a funcion", "Puntero", MB_OK);
}
int tq(void)
{
MessageBox(NULL, "Funcion puntero usando retorno", "Puntero", MB_OK);
ExitProcess(0);
}
int main(int argc, char *argv[])
{
void (*func)() = &rbk;
int (*func2)() = &tq;
(*func)();
return ((*func2)());
}