Fajer Jadeed
29-10-03, 03:22 PM
if I had an array of pointeres of type Call where Call is a predifined Class, and I have another array of pointeres of the same type Call.
how could I assigen the first array equal to the second arry?
the compiler didn't accept this
the empty pointer array of type Call: Call CalPtr[3];
the one pased through and has the values:
SetCustomer(char *Name,char *Number, Call *call)
the last one: Call *call
I tried this but it didn't work
CallPtr=call;
the compiler says can not convert from 'Call' to 'Call'
Can any one help me please, please?:(
how could I assigen the first array equal to the second arry?
the compiler didn't accept this
the empty pointer array of type Call: Call CalPtr[3];
the one pased through and has the values:
SetCustomer(char *Name,char *Number, Call *call)
the last one: Call *call
I tried this but it didn't work
CallPtr=call;
the compiler says can not convert from 'Call' to 'Call'
Can any one help me please, please?:(