What the equal of
int8_t[20]
C++ type in Delphi ?
As I know it’s byte, but what is [20] ?
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.
Thats an array of signed one-byte integers. In C/C++ Arrays all start at index 0, so the valid array-indices run from 0 to 19