Predict the output
#include stdio.h
main()
{
char *p = "Teju";
p[0] = 'a';
p[1] = 'n';
printf("%s", p);
}

Posted on by