I am trying to check whether this equal to zero as
//Address already malloc
void MyCheck (void *Address){
if ( (long)Address & (~(sizeof(long)-1)) != 0 ){
printf("Invalid");
}
}
When try to compile it give me:
Error: suggest parentheses around comparison in operand
of '&' [-Werror=parentheses]