A long time back, browsing through a book, I came across code for strcpy function which is part of the standard library in C:
strcpy(char *s1,char *s2)
{
while (*s1++ = *s2++)
}
Just the beauty of the code made me fall in love with C and programming all
over again. Then, I got busy with courses, jobs, projects and releases.



