#include <iostream>
#include <vector>
using namespace std;
typedef unsigned char BYTE;
int main() {
	// vector of BYTE, contains these 7 elements for example: (0,30,85,160,155,93,0)
	std::vector<BYTE> data = {0, 35, 35 ,38};
	
	// method 2
	std::string string2(data.begin(),data.end());
	cout<< (string2.data()+1) << " size:"<< string2.size() <<endl;
	return 0;
}