What is the output of the following code?
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]");
}



Posted on by