Quote:
|
Originally Posted by milt
Is it possible to use a pointer variable for this?
|
This is the only way I can think off atm.
Code:
Class1 *classes = (Class1 *) calloc( 2, sizeof(Class1) );
classes[0] = Class1("hey");
classes[1] = Class1("heeey");
__________________
Angels are falling the very last time, down they're burning in hate and decline, unfaithful and violent we're breaking the spell, we're god, we're scissor, in heaven and hell!
|