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\'
int lungh(char *p){ char *r = p; while(*p++!='\0'){} return p-r; }