[ERROR]
A pointer was subtracted from an integral type.
void main() {
int *p;
int i;
i-p; // error
}
Insert a cast operator from the pointer to the integral type.