Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ある文字バッファから別の文字バッファにコンテンツを取得するにはどうすればよいですか?例えば私は持っています
char buffer[SMALLVALUE]; char new_buffer[BIGGERVALUE];
の内容をにコピーしたいのですbufferがnew_buffer。これを行うための最短の方法は何ですか?
buffer
new_buffer
#include <string.h> memcpy(new_buffer, buffer, sizeof buffer);