// experi6g.c

#include <conio.h>
#include <stdio.h>

void main(void)
{
  int x,y,n;
  char *ptr;
  ptr = NULL;

  for(x=0,n=0; n<16; x+=4,n++)
  {
    printf("Number = %03d Memory Location = %04d Vector = ",n,x);
    for(y=0; y<2; y++)
    {
      printf("%02X",*ptr);
      ptr++;
    }
    printf(":");
    for(y=0; y<2; y++)
    {
      printf("%02X",*ptr);
      ptr++;
    }
    printf("\n");
  }

}

// experi6g.c


