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.
長さ 1500 のunsigned char * バッファーを初期化して、他のソースから値を格納できるようにしたいと考えています。
ヒープに置きたい場合は、
unsigned char* buffer = new unsigned char[1500];
スタックに入れたい場合は、
unsigned char buffer[1500];
std::vector<unsigned char> buffer(1500);