void strcpy(char *s, char *t)
{ while ( (*s++ = *t++) != `\0);}
i saw this code in a particular book.....
in the what does the assignment statement (*s++=*t++) return each time it gets executed........
all along i was thinking that the assignment statement return a 0 or 1 based on whether the assignment statement worked or not.... can somebody help me clarify my misconception.....