[Help]Concatenate byte arrays
Code:
byte one[] = { 1, 1 };
byte two[] = { 2, 4 };
byte three[sizeof(one) + sizeof(two)] = ?
I'm stumped on how to do this (efficiently). /:
[Help] Tags added, It's easier for us to know what it is you are looking for
I want to do this at run time O:
I know I can just iterate through each byte and assign it, but is there a function that does it for me? (a C++ function that may be more efficient or faster or something_