I had come across the following code:
typedef struct { double x; double y; double z; } *vector;
Is this a v
yes...saves you the trouble of constantly typing the word 'struct' everytime you declare the vector struct or a pointer to it.