1、下列程序执行后的输出结果是()。include <stdio.h> include <string.h> int main() { char arr[2][4]; strcpy(arr[0],"you"); strcpy(arr[1],"me"); strcat(arr[0],arr[1]); printf("%s\n", arr[0]); return 0; }

A.you B.me C.youme D.无确定的输出结果

时间:2024-05-06 00:46:36

相似题目