ライブラリ #include
これらのメモリ操作は次のとおりです。
バッファ 内の文字を検索します。 | |
2 つのバッファーを比較します。 | |
あるバッファを別のバッファにコピーします。 | |
あるバッファから別のバッファに特定のバイト数を移動します。 | |
バッファのすべてのバイトを指定された文字に設定します。 |
文字のコピー (バイト) | |
整数配列をコピー |
memmove() behaves in exactly the same way as memcpy() except, that the source and destination locations may overlap.
#
memcmp() is similar to strcmp() except here, unsigned bytes are compared and returns less than zero if si is less than s2 etc.
例:
char src[SIZE], dest[SIZE]; int isrc[SIZE], idest[SIZE];
以上がC言語のメモリ操作とは何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。