char *ptr0 = "Hello Goodbye"; char *ptr1 = ptr0+6; // offset 6 bytes from ptr0 printf("ptr0: %s\n", ptr0); // expected output ptr0: Hello Goodbye printf("ptr1: %s", ptr1); // expected output: ptr1: Goodbye