Multiple choice

Which of the following data types is not defined by C?

  1. Char

  2. Int

  3. Bool

  4. Double

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

The char, int, float, double and void are five data types defined by C. In C++ , add two more- bool and wchar_t. Hence, bool is the correct option.