Consider the following C code fragment:

short arr[] = { 2, 4, 6, 8, 10, 12, 14, 16 };
short* p1 = arr + 10;
short* p2 = arr + 6;

Give the exact value of the following expression as an integer.

*(arr + (p1 - p2))