There is a lot on that page, so I separated this into a new question.
Previous:
Expand|Select|Wrap|Line Numbers
- string tempString = "";
- string stringByte;
- string words;
- for (char& _char : words) {
- numToString = to_string (i);;
- stringByte = bitset<8>(_char).to_string();
- // etc.
error: invalid operands of types 'const char*' and 'const char [23]' to binary 'operator+'
With error:
Expand|Select|Wrap|Line Numbers
- tempString = "\n [" + _char + "]=<Combined_1 PLANE 0>" + stringByte;
Without error:
Expand|Select|Wrap|Line Numbers
- tempString = "\n [" + _char;
- tempString = tempString + "]=<Combined_1 PLANE 0>" + stringByte;
I have been trying to understand this.
What is it saying that I need to do?
Help please.
Thank you.