C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main() {
char* message[10] = { "Hello!" ,"Good Bye!","1202","15","14","16"};
// char* dst = "Copy";
printf("%s\n",message[0]);
strcpy(message[0], "Copy");
printf("%s", message[0]);
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run