Multiple choice In the declaration float, *s mean that 's' is a float variable 's' is going to contain a floating point value 's' contains the address of a floating point variable none of these Reveal answer Fill a bubble to check yourself C Correct answer Explanation The declaration float *s defines s as a pointer to a float, meaning it holds the memory address where a float value is stored.