#include <iostream>
#include <cstdlib>

using namespace std;

int main(int nargs, char* args[])
{
   float a[10];
   for (int k=0; k<10; k++)
       a[k]= 10.0 + 3.0*k;

   for (int k=0; k<10; k++)
       cout << "a[ " << k << " ]= " << a[k] << endl;

   float* p = a;
   cout << "*p= " << *p << endl;
   p++;
   cout << "*p= " << *p << endl;
   p++;
   cout << "*p= " << *p << endl;
   return EXIT_SUCCESS;
}






