Is there any way i can delete the partial memory of the pointer.? for example
char *c = new char[1000]; sprintf(c,\"this is it\");
As it can b
Unless your system is a RAM-restricted embedded system, why bother? Just use ginormous buffers and include a 'dataLen' int.