What will be the output of the following program?
#includestdio.h
int main()
{
char *names[] = { "Anil", "abhi", "Sanmati", "Shobha", "prajwal"};
int i;
char *t;
t = names[3];
names[3] = names[4];
names[4] = t;
for(i=0; i=4; i++)
printf("%s,", names[i]);
return 0;
}