Q. Which data type is usually used to represent boolean values in C?
β
Correct Answer: (C)
int
Explanation: C uses int for boolean logic, where 0 is false and non-zero is true.