
Patrick B. answered 05/25/19
Tutor
4.7
(31)
Math and computer tutor/teacher
Yes, but then you can do this:
typedef _TMyStruct
{
int one;
int two;
} * TMyStruct;
So now you can declare the data structure AND a POINTER to it's type in the same block.
This can also be done with enums and function pointers.