Inactive Tutor answered 07/23/19
Tutor
New to Wyzant
typedef struct Foo
{
// column fields go here
} * Foo;
declares a data structure type named Foo
and then a pointer to structure type;
without the typedef you are just declaring the structure type