Reputation: 143
How do I get the contents from one character buffer into another? For instance I have
char buffer[SMALLVALUE];
char new_buffer[BIGGERVALUE];
I'd like to copy the contents of buffer
into new_buffer
. What's the shortest way to do this?
Upvotes: 0
Views: 4422