output of
void main()
{
int Arr[] = {1, 2, 3, 4, 5};
printf("%d", 2[Arr]);
}
it will print the element with index 2 of the array i.e. 3..
This is so because 2[Arr] is equivalent to *(2+Arr) i.e adding 2 to
the base address of array Arr and then calculating the value at that
address.
and please give me the solution of 1st question....