Thread
:
what is wrong with this code
View Single Post
harikrishna_sit
Newbie Member
24Jan2008,16:52
main()
{
char *p="hai friends",*p1;
p1=p;
while(*p!='\0')
++*p++;
printf("%s %s",p,p1);
}