Contents:
Parent(slot n) = floor((n-1)/2) Left_Child(slot n) = 2*n + 1 Right_Child(slot n) = 2*n + 2
double (*fptr)(char, int, float)declares fptr as pointer to function (char, int, float) returning double. For a never-ending supply of laughs, run the program "cdecl" on one of the UNIX machines on PICnet, and enter something like:
explain void (*fptr)(char, float)To go from an english description to C code, type:
declare fptr as pointer to pointer to function (function returning int) returning doubleThe output will be:
double (**fptr)(int ())