defining a structure?
Marz Krishna
Posts: 26
is there anyway way to define a structure ( typedef struct {int x, int y}vector; )? also is there anyway to deallocate memory for a variable (free vector[noparse];)[/noparse]?
Post Edited By Moderator (Joshua Donelson (Parallax)) : 8/6/2009 11:29:40 PM GMT
Post Edited By Moderator (Joshua Donelson (Parallax)) : 8/6/2009 11:29:40 PM GMT
Comments
The closest thing to a structure available is an array. As an alternative to freeing memory, you can look at aliases.