I am looking at some older Apple code for C++, I am familiar with float but not Float32 and Uint32 types are they the same as standard float and ints?
Thanks
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.
UInt32is a 32-bit (4-byte) unsigned integer. This means that it can represent values in the range[0, 2^32-1](= [0, 4294967295]).Float32is a 32-bit (aka single-precision [contrast with double-precision]) floating point number.As other answers have mentioned, the types exist to guarantee the width.