A copy example
char msg1[] = ``Hello '';
char msg2[] = ``world'';
char message[100];
char* p = copy(msg1,
msg1 + sizeof(msg1)-1,
message);
copy(msg2, msg2 + sizeof(msg2), p);
printf(``%s\n'', message);
Previous slide
Next slide
Back to first slide
View graphic version