std::memcmp() en C++
Compara los primeros caracteres de conteo de las arrays apuntadas por buf1 y buf2. Sintaxis: int memcmp(const void *buf1, const void *buf2, size_t count); Return Value: it returns an integer. Parameters: buf1 : Pointer to block of memory. buf2 : Pointer to block of memory. count : Maximum numbers of bytes to compare. Return Value … Continue reading «std::memcmp() en C++»