Scalar types as we know are: int, char, float, etc. But pointers are also scalar types. Does it include pointers to a class type or only a scalar type?
Scalar types as we know are: int, char, float, etc. But pointers are also
Share
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.
A scalar type is the type of an object that only contains a single item. A pointer would fit that description, even if it points to a class object.
The opposite of a scalar would be things like an array or a struct.