How is possible to compare two pointer?

In c is possible to have:

int *P1;
int *P2;

if (P1<P2)
//some stuff

Thanks
Sesilla