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.
1文字をバッファに追加する方法を教えてください。例えば:
char buffer[50]; char one_symbol;
に one_symbol を追加する方法はbuffer? その時のバッファの長さがわからないので、例えばbuffer[5] = one_symbol;
buffer
buffer[5] = one_symbol;
ありがとう。