• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

structures

Status
Not open for further replies.
Level 7
Joined
Aug 19, 2009
Messages
278
Hi...

I don't know which place exactly to write this so wrote here.

I tried reading some guides on structures in vjass but my problem is i couldn't figure it out.

My concept of structure in C is clear. It will be helpful if some one could say me the similarities of the structures in C and vjass.

Or could link me a good guide on structures.

And are structures global? i really got no idea on it.
 
Level 7
Joined
Aug 19, 2009
Messages
278
are there no really good guides on structures?

Can arrays be structure variables? like we do in C??

like this

struct abc
{
int a;
......................
......................
......................
};
struct abc arr[100];

And you can work like

arr[1].a = 123213

Are things like that possible?

?
 
Status
Not open for further replies.
Top