Multiple choice

Which of the following data types is not defined in Standard C++?

  1. Char

  2. Int

  3. Real

  4. Bool

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

There is no data type by the name Real in Standard C++.To store real number, we either use float or double data type.