What is the output of the following code?
#includestdio.h
int main()
{
int a[ 3 ]={ 15, 20,25 };
if(a==15)
printf ("a[ 0 ]");
else if (a==20)
printf ("a[ 1 ]");
else
printf ("a[ 2 ]");
return 0;
}


Posted on by