Kizspy | Question: 47 (Choose 1 answer)
What is the output of the following code snippet?
char str1 = "Hello";char str2[10];
strcpy(str2, str1);
A. Copies content of str1 into str2
B. Compares str1 with str2
C. Retrieves the length of str1
D. Assign str2 to an empty string