imagine that you have these struct:
Code:
struct Person
{
    char Name[255];
    int age;
};
and you create a variable array:
Person a[20];
but then you only need 3. how can i change it?
i try several things and read some info, but i only get errors
i understand that i'm using C code with some C++, but i don't know C++(for now).. after i finish C i will
these sample is for see if i can do something... i'm tired loking for something and nothing works