When you increment a pointer in C, it advances the pointer by the size of the type to which it points, which is known as ________.

  • Looping
  • Memory allocation
  • Pointer arithmetic
  • Typecasting
When you increment a pointer in C, it advances the pointer by the size of the type to which it points, and this operation is known as pointer arithmetic. It allows you to navigate through data structures in memory.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *