I have a question that I have been wondering for a long time.
Is it possible to append a hex string to a byte array as it is in C++?
Example:
string hexString = "0x30";
I want to append to a byte array or a vector like this.
static const unsigned char example[] = {
0x30
}
How can I do that?