Tuesday, November 11, 2008

You want to declare a pointer to an array of 20 elements containing double values.

Which one of the following statements do you use to declare a pointer to an array of 20 elements containing double values?

Choice a : push(double *array, [20]);
Choice b : double **array[20];
Choice c : double (*array)[20];
Choice d : void pointer = *array[20];
Choice e : double array = *array[20];

No comments: