What will be the output?
int main()
{
     int x=_   y=_;
     int *a= &x;
     int *b= &y;
     printf("%d\n",a-b);
     printf("%d",*a-*b);
      return 0;
}


Posted on by