KodeGod.com

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

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