Let’s start the discussion about How to set a pointer to an offset in c in following Approaches.
Pointer arithmetic is quite straightforward to grasp. If you have a pointer to the first element of an array, p + 1 points to the second element, and so on, regardless of the size of the array.
Contents
how to set a pointer to an offset in c
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
I hope the strategies listed above work for you. Happy coding and come back again.
Similar Post : error: ‘cout’ was not declared in this scope