Character pointers and integer pointers (++)

Simple, in the provided scenario:

  • char is 1 byte long
  • int (in your platform) is 4 bytes long

The ++ operator increments the pointer by the size of the pointed type.

Leave a Comment