#include #include int main(void) { // initialize pointer variables char *str; char str1[20]; str = &str1; strcpy(str1, str); printf("%s\n", str1); printf("%s\n", str1); printf("%i\n", *str); return 0; }