You have already completed these exercises!
Do you want to take them again?
You completed the C Pointers and Arrays Exercises from W3Schools.com
Share on:
How would you access the third element in myNumbers using pointers?int myNumbers[4] = {25, 50, 75, 100};
myNumbers
int myNumbers[4] = {25, 50, 75, 100};
myNumbers[3]
*myNumbers + 3
*(myNumbers + 2)
myNumbers[2]