KodeGod.com

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

 
int main()
{
  int a;
  a= (1, 2, 3);
  printf("%d", a);
  return 0;
}