C++ does not support string type.
A
Correct answer
Explanation
In standard C++ (before std::string), there is no built-in string type - strings are implemented as char arrays or pointers. The std::string class is a library implementation, not a primitive language type. Modern C++ has string in the standard library, but it's still not a fundamental type like int or char.