Which of the following statements is not true about booleans in C?
Booleans are a primitive data type in C
Booleans are not a built-in data type in all versions of C
Booleans are available in the C99 version of C using the stdbool.h library
You can emulate Boolean values by creating true and false variables/constants with the values of 1, 0 respectively.