Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

In C++, what is the sign of character data type by default?

a) Signed
b) Unsigned
c) Implementation dependent
d) Unsigned Implementation

Answer: c
Explanation: The standard does not specify if plain char is signed or unsigned. There are three distinct character types according to the standard: char, signed char and unsigned char.

Join The Discussion