这是一个指针算术问题
//code
#include<iostream>
using namespace std;
int main()
{
int a=20,b=50,*p,*q;
p=&a;
q=&b;
int c=p-q;
cout<<c; //Here I'm getting 1 for all positive value of 'a' and 'b'
return 0;
}
我也试过 long int c