What will be the output?
#include<stdio.h>
#include<stdlib.h>
int main()
{
  int x =5,y=14;
  int *a = &x;
  int *b = &y;
  printf("%d\t",a-b);
  printf("%d",*a-*b);
  exit(0);
}


Posted on by