Is the defacto method for comparing arrays (in C) to use memcmp from string.h?
I want to compare arrays of ints and doubles in my unit tests
I am unsure whether to use something like:
double a[] = {1.0, 2.0, 3.0};
double b[] = {1.0, 2.0, 3.0};
size_t n = 3;
if (! memcmp(a, b, n * sizeof(double)))
/* arrays equal */
or to write a bespoke is_array_equal(a, b, n) type function?
memsetwill change (set) values in the array so that's not usefull for only comparing arrays. – Thomas Dec 6 '11 at 12:34memcmpcompares byte-for-byte, which may not be what you want (esp. with floating-point values). – larsmans Dec 6 '11 at 12:39