// Pantea Aria // pointers and strings #include int main() { char str[] = "Hello World"; // make a pointer *s to this string // print out each character // print out the address of the string // print out the address of the where 'W' is stored // can you move s to point to 'W' and not 'H'? how? // Can I move str to point to 'W' and not 'H'??? return 0; }