É melhor usar memcpycomo mostrado abaixo ou é melhor usar std::copy()em termos de desempenho? Por quê? char *bits = NULL; ... bits = new (std::nothrow) char[((int *) copyMe->bits)[0]]; if (bits == NULL) { cout << "ERROR Not enough memory.\n"; exit(1); } memcpy (bits, copyMe->bits,...