下面这个程序会打印出什么?
#include <stdio.h> #include <string.h> int main (void) { char goldwyn[40] = "art of it all "; char samuel[40] = "I read p"; char *quote = "the way through."; strcat (goldwyn, quote); strcat (samuel, goldwyn); puts (samuel); return 0; }