I have an array of function pointers
typedef uint32_t (*test) ( void );
static const test tests[] =
{
test_1 ,
test_2 ,
test_3 ,
test_4 ,
test_5 ,
};
I want to return a pointer to the above function pointer array . Can anyone pls help me do it.
Thanks !