KodeGod.com

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

int main()
{
  int a=2,b=7,c=10;
  c=a==b;
  printf("%d", c)
  return 0;
}