Preprocessor macro parameter expansion

Question | Apr 25, 2016 | hkumar 

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?