I have a vector which contains strings:
vector<string> vectorStr = { "0x6c", "0x9f", "0x71", ... };
How do i convert the CONTENT of the strings to chars?. Preferable to a char-array, which in the end looks like:
char charArray[] = { 0x6c, 0x9f, 0x71, ... };
Seems like i am the first human in history of computer science who has to solve this problem. Everyone else just wants to convert a string into a char-Array, which is not what i want.