#include <string.h> #include <memory.h> int main () { char *buf; buf = new char[1024]; memset(buf, NULL, 1024); strcat(buf, "LALALALALA"); delete buf; return 0; }