Question: Given the denitions, double values[] = { 2, 3, 5, 7, 11, 13 }; double* p = values + 3; explain the meanings of the
Given the denitions,
double values[] = { 2, 3, 5, 7, 11, 13 };
double* p = values + 3;
explain the meanings of the following expressions:
a. values[1]
b. values + 1
c. *(values + 1)
d. p[1]
e. p + 1
f. p - values
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
