KodeGod.com

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

int main()
{
   int arr[1] = {2};
   printf("%d", 0[arr]);
   return 0;
}