Let's say I have this defined:
temp *char;
//some code here
temp = new char[A_NUMBER];
Now, let's say I want to allocate another mem space to temp...how would I do this without destroying what's already in temp? Thanks in advance;
Niky Williams
NTS Marketing
Niky.Williams@NTSMarketing.com
temp *char;
//some code here
temp = new char[A_NUMBER];
Now, let's say I want to allocate another mem space to temp...how would I do this without destroying what's already in temp? Thanks in advance;
Niky Williams
NTS Marketing
Niky.Williams@NTSMarketing.com