KodeGod.com

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

 
int main()
{
  char arr1[]= "aptitude in c";
  char arr2[]= "aptitude in c";
  if(arr1 == arr2)
  printf("cheers");
  return 0;
}