KodeGod.com

040. Technical interview question: Give the output of following code

int main()
{
  int i = 5;
  int a = --i - --i - --i - --i;
  printf("%d", a);
  return 0;
}