Superhero’s Secret Identity
Test your C programming skills by solving the given puzzle about array and pointer access.
We'll cover the following...
Puzzle code
...Press + to interact
#include <stdio.h>#define SIZE 5int main(){int values[SIZE] = {2, 3, 5, 8, 13};int *v, x;/* initialize the pointer */v = values;for( x=0; x<SIZE; x++ ) {printf("%2d = %2d\n",values[x],*(v+x));}return(0);}
...