I will like to declare a typedef, something like this:
- Pointer to any array of another typedef.
for e.g.:
Typedef 1:
typedef struct
{
int a;
}structA_t1;
Typedef 2:
typedef ptrstructA structA_t1 (*Temp)[] ;
Is this second typedef correct ? Do i really need this Temp name here ? Please suggest, thanks