delete partial memory of the pointer

前端 未结 3 1236
野性不改
野性不改 2021-01-28 02:31

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

3条回答
  •  囚心锁ツ
    2021-01-28 03:02

    Unless your system is a RAM-restricted embedded system, why bother? Just use ginormous buffers and include a 'dataLen' int.

提交回复
热议问题