Multiple choice

The address of a variable 'num', which is of type float is denoted by the variable _____________.

  1. *num

  2. &num

  3. float& num

  4. float num&

  5. *& num

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

&num gives the address of the variable num.