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?

link|improve this question

I think you mean memcmp. memset would overwrite the first array. – ammoQ Dec 6 '11 at 12:34
IIRC memset will change (set) values in the array so that's not usefull for only comparing arrays. – Thomas Dec 6 '11 at 12:34
yes, memcmp that is what i meant - is this considered good practice? – Hiett Dec 6 '11 at 12:36
@Hiett: depends on what you want. memcmp compares byte-for-byte, which may not be what you want (esp. with floating-point values). – larsmans Dec 6 '11 at 12:39
feedback

4 Answers

up vote 5 down vote accepted

memset doesn't compare anything. It writes bytes. You must mean memcmp, which is a way of comparing arrays in C (byte-by-byte, lexicographically).

When comparing floating-point values, I'd define my own function, though:

bool dbl_array_eq(double const *x, double const *y, size_t n, double eps)
{
    for (size_t i=0; i<n; i++)
        if (fabs(x[i] - y[i]) > eps)
            return false;
    return true;
}

memcmp would do an exact comparison, which is seldom a good idea for floats, and would not follow the rule that NaN != NaN.

link|improve this answer
i see - i've written a similar function but was concerned that it was 'overkill' and I should maybe trying to use more generic library functions, not reinventing the wheel and all that. I think I will stick with your recommendation – Hiett Dec 6 '11 at 12:41
whats the bool datatype? is that not a C++ thing? – Hiett Dec 6 '11 at 13:13
1  
@Hiett: since C99, bool is part of C. It's in <stdbool.h> and comes with macros true and false. If you're on MSVC, you may not have stdbool.h since that compiler only supports C89. – larsmans Dec 6 '11 at 13:14
using gcc 4.6.1 - it seems to work OK, excellent stuff – Hiett Dec 6 '11 at 13:31
in <stdbool.h> am I right in thinking true and false are #defines of 1 and 0, e.g. they can be used interchangeably? Thinking about how to best integrate into my existing code – Hiett Dec 6 '11 at 14:33
show 1 more comment
feedback

The function you're looking for is memcmp, not memset. See the answers to this question for why it might not be a good idea to memcmp an array of doubles though.

link|improve this answer
feedback

Replace memset with memcmp in your code, and it works.

In your case (as the size both arrays arrays are identical and known during compilation) you can even do:

memcpy(a, b, sizeof(a));
link|improve this answer
feedback

memcmp compares two blocks of memory for number of size given

memset is used to initialise buffer with a value for size given

buffers can be compared without using memcmp in following way. same can be changed for different datatypes.

int8_t array_1[] = { 1, 2, 3, 4 }
int8_t array_2[] = { 1, 2, 3, 4 }

uint8_t i;
uint8_t compare_result = 1;

for (i = 0; i < (sizeof(array_1)/sizeof(int8_t); i++)
{
 if (array_1[i] != array_2[i])
  {
   compare_result = 0;
   break;
  }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.