
Patrick B. answered 07/23/19
Tutor
4.7
(31)
Math and computer tutor/teacher
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