--- In [email protected], "nimak247" <nimak...@...> wrote: > > typedef struct { > int one; > int *two; > } *myT;
Leaving aside the question of whether you should be doing this at all, I think
you want:
typedef struct {
int one;
int *two;
} myT; // Note - no *
