Many new C++ data type names have a single word name,
for example:
- int16_t instead of signed short int
- int64_t instead of signed long long int
- …
Has “long double” a single word name?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No,
int16_tdoesn’t always meanshortetc.int16_tetc are integer types of specified size, while size ofshortetc is unspecified. You don’t need such things for floating point types, because their sizes are specified.