I need to check if an array is empty using macros. If the size of array is constant say 2, then I will be able to write a macro like
#define IS_EMPTY(arr) \
((arr[0] | arr[1]) == 0)
But if arr is defined like this
#define ARRAY_SIZE 100
int arr[ARRAY_SIZE];
Is there any way, a macro can determine that the array is empty? Or is inline functions the only option.
int arr[array_size]is comprised of just 0. But as it happens those are measured values? Is the array still 'empty'? – RedX Nov 13 '12 at 18:09ALL_CAPS_BY_DEFAULT, but please avoid this convention in post titles. – H2CO3 Nov 13 '12 at 18:10