#include #include main() { char *s1 = "hello, world"; char *s2; s2 = strdup( s1 ); s1 = "hello, computer"; printf ("%s --- %s\n", s2, s1); exit(0); }