I was looking up some code tricks. I found one that I get the basics but I don\'t understand why it exits. It has to do with a string pointer in a while loop. Usually I don\'
while(*(s+c)) returns false when the null character is encountered and breaks the loop
while(*(s+c))