In C++, is there any difference between:
struct Foo { ... };
and:
typedef struct { ... } Foo;
Struct is to create a data type. The typedef is to set a nickname for a data type.