Quote:
Originally Posted by CrazyGal
It will evaluate to False. Yea, I figured out my mistake. I changed *pb == '\0' to pb = (b + strlen(b) -1) and it worked.
I don't believe it ! How can it work ?
You should change it to pb
== (b + strlen(b) -1) not pb = (b + strlen(b) -1)