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.
間にヌル文字を含めることができる場合、メモリの内容を印刷するにはどうすればよいですか。アドレス 0X123 があるとします。メモリ内のこのアドレスの前に約 100 文字を印刷したいのですが、その間に NULL 文字が含まれる可能性があり、それらの NULL 文字も印刷したいと考えています。
フォーマットされていない出力を使用します。
cout.write(address, count);
またはCの場合:
fwrite(address, 1, count, stdout);