首页 > 试题广场 >

下面这个程序会打印出什么? #include

[问答题]
下面这个程序会打印出什么?
#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;
}

推荐
I read part of it all the way through.
发表于 2018-03-19 21:35:08 回复(0)