what's the proper way of declaring a vector in lite-c? or
Is it
a) VECTOR temp;
b) VECTOR* temp; ..... ?

Is there a scope where it is declared for either declaration syntax?

I've seen some sample codes using (a) and/or (b)...
I try to declare a global vector using (a), it works fine.
Then, i try also declaring a global vector using (b).. it crashes!

just for clarification. Thanks