Multiple Choice
Which of the following correctly declares a user-defined data type that defines a pointer to a float?
A) float* floatPtr ;
B) typedef float* floatPtr;
C) typedef floatPtr *float;
D) typedef floatPtr* float
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q2: Which of the following is not true?<br>A)
Q3: Which of the following statements correctly prints
Q4: Which of the following assigns to p1
Q5: Declare a pointer variable named ptr to
Q6: Dynamically created variables have no name.
Q7: What is the output of the following
Q8: Even though pointers point to addresses which
Q9: Given that p1 is a pointer variable
Q10: Assuming that the pointer variable p1 is
Q11: In which case would you consider using