Multiple choice

In the declaration float, *s mean that

  1. 's' is a float variable

  2. 's' is going to contain a floating point value

  3. 's' contains the address of a floating point variable

  4. 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.