Find the output of :
#includestdio.h 
int main()
{
char str[20] = "Sookshmas";
char *const p=str;
*p='M';
printf("%s\n", str);
return 0;
}

Posted on by