What does the below cafe prints?
#includestdio.h

int main()
{
char *names[ ] = { "Chucha", "Rasshu", "Teju", "Sonu", "Vijju"};
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;
}


Posted on by