O
Ole
Hi,
Doing this will work:
double *dPointer;
result = sizeof(*dPointer);
if I want the size (in this case 8) of the type that the pointer is pointing
at, but is there a more correct way to obtain it?
Thanks
Ole
Doing this will work:
double *dPointer;
result = sizeof(*dPointer);
if I want the size (in this case 8) of the type that the pointer is pointing
at, but is there a more correct way to obtain it?
Thanks
Ole