¿Es mejor usar memcpycomo se muestra a continuación o es mejor usar std::copy()en términos de rendimiento? ¿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,...