R
Roberto Gallo
Say we have:
byte buf1[] = {1, 2, 3..};
byte buf2[];
And I want to make buf2 a copy of buf1 istead to reference it.
What would buf2 = buf1 do?
How to copy from one array to another?
Thank you.
byte buf1[] = {1, 2, 3..};
byte buf2[];
And I want to make buf2 a copy of buf1 istead to reference it.
What would buf2 = buf1 do?
How to copy from one array to another?
Thank you.