Q:

we can use the increment operator to move from one element in an array to the next

0

we can use the increment operator to move from one element in an array to the next.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

int arr[] = {0,1,2,3,4,5,6,7,8,9};
int *p = arr; // p points to the first element in arr
++p; // p points to arr[1]

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now