Given a C++ preprocessor macro and a function:
#define DIVIDE(x,y) x/(y) int divide(int x, int y) { return x/y; }
Which one of following comparison expressions would return false?