S
Steph
i'm using visual studio 2005, C++
I have these variables
byte buffer1[100];
long lng1;
Bool bl1;
date dt1;
I want to concatenate lng1, bl1 and dt1 values into buffer1.
How can I convert a variable to byte
I think that bool is 1 byte.
how can I transfer 2 bytes for this field instead of only 1 to buffer1
thanks
I have these variables
byte buffer1[100];
long lng1;
Bool bl1;
date dt1;
I want to concatenate lng1, bl1 and dt1 values into buffer1.
How can I convert a variable to byte
I think that bool is 1 byte.
how can I transfer 2 bytes for this field instead of only 1 to buffer1
thanks