CS 225 Notes Chapter 1

                              Here is the C code to copy one string like this to another
                                                char str[7],str2[7];
                                                char *s=str,*p=str2;
                                                while(*p++=*s++);