Pointer's pointer: value : Pointer Pointer « Pointer « C / ANSI-C






Pointer's pointer: value

  
#include <stdio.h>

int main(void)
{
  float *fp, **mfp, val;

  fp = &val;
  mfp = &fp;

  **mfp = 444.903;
  printf("%f %f", val, **mfp);

  return 0;
}


           
       








Related examples in the same category

1.Pointer and pointer's pointer