what will be the output?
#include stdio.h
int main() {
int a[3]={10,11,12};
int i = 0;
while (i 3)
{
printf("%d\n", a[i]);
i++;
}
if(a[i]==0)
{
printf("khushi");
}
else if(a[i]==1)
{
printf("patil");
}
else
{
printf("AIML GMIT");
}
return 0;
}


Posted on by