79186231

Date: 2024-11-13 18:35:11
Score: 2
Natty:
Report link
  1. ++p increments the pointer, modifying the original pointer value, so that it points to the next element in memory. It's the pre-increment operator for pointers.
  2. p + 1 calculates a new pointer value, which points to the next element in memory, but does not modify the original pointer. This is just pointer arithmetic.
Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: sankeedhan