I have in my C++ program unsigned char array of hex values:
unsigned char buff[] = {0x03, 0x35, 0x6B};
And I would like to calculate the size of this array so that I can send it on UART port linux using this function:
if ((count = write(file,buff,length))<0)
{
perror("FAIL to write on exit\n");
}
as I can see the length is int number, and buff is an array which can change size during program execution. can anyone help me how to write it. Thanks
You can do this with an array:
with your example that give:
Note: I use C semantic because write is from lib C.
In C++, you can use template to be sure that you use
sizeof
with an array.with your example that give: