Google News
logo
CPP - Quiz(MCQ)
Which of the following is not a fundamental type is not present in C but present in C++?
A)
bool
B)
void
C)
int
D)
float

Correct Answer :   bool


Explanation : Boolean type is not present as a fundamental type in C. int type is used as boolean in C whereas in C++ bool is defined as a fundamental type for handling boolean outputs.

Advertisement