-
A.
Performing arithmetic operations on the values of pointers
-
B.
Performing arithmetic operations on the memory addresses stored in pointers
-
C.
Converting pointers to integers and performing arithmetic operations on them
-
D.
Converting integers to pointers and performing arithmetic operations on them
Correct Option: BExplanation:
Answer: B
Explanation: Pointer arithmetic in C involves performing arithmetic operations on the memory addresses stored in pointers. For example, you can add or subtract an integer value from a pointer to move it to a different memory location. However, it is important to be careful with pointer arithmetic to avoid accessing invalid memory locations.