#include #include main() { char a[20] = "apple"; char b[] = "orange"; printf("%s %s\n", a, b); strcpy(a, b); printf("%s %s\n", b, a); exit(0); }