A
Abubakar
Hi,
(all unmanaged c++)
I have a char *. I allocate it using:
char * t = new char [ any_size_here];
at some point I want its length to grow to accomodate copying more
characters. What is the best way of doing it?
Also, can I just use std:string instead, and is its string appending very
efficient?
regards,
Ab.
(all unmanaged c++)
I have a char *. I allocate it using:
char * t = new char [ any_size_here];
at some point I want its length to grow to accomodate copying more
characters. What is the best way of doing it?
Also, can I just use std:string instead, and is its string appending very
efficient?
regards,
Ab.