34.7k views
4 votes
Which of the following is an example of a C++ primitive data type?

A) unsigned short int
B) long double
C) unsigned char
D) All of these
E) None of these

1 Answer

3 votes

Final answer:

An example of a C++ primitive data type is unsigned char.

Step-by-step explanation:

An example of a C++ primitive data type is unsigned char. C++ has several primitive data types, including unsigned short int, long double, and unsigned char.

These data types are considered primitive because they are built-in to the C++ language and do not require any additional libraries or dependencies to use.

User Tim Lepage
by
8.2k points