How would i made a dynamic array sized global stuct.
What i want to do is beable to have a stuct like this
stuct A
{
int a,b,c,d;
}a[5];
But be able to make it bigger if i need
so lets say i want t change the size of the stuct array to make it bigger to 10 but i don't see how thats posable and keep it global.
Any one got an idea?