長さ30x21, 0x0D, 0x01, 0x03, 0x31, 0x32, 0x33のASCII文字列を含むようなバイト配列があります.
私は学んでいます.誰かがそれから出力を取得して. どうもありがとう"123"(string starts at 0x03, 0x31, 0x32, 0x33)"123"char*
BYTE Data[] = { 0x0D, 0x01, 0x03, 0x31, 0x32, 0x33 };
int Length = Data[2];
//Extract string "123" from Data and store as char* ?