Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
int main() { int myNumbers[4] = {25, 50, 75, 100}; // Get the value of the second element in myNumbers printf("%d\n", *(myNumbers + 1)); // Get the value of the third element in myNumbers printf("%d", *(myNumbers + 2)); return 0; }
50
75