What is a “byte” in C / C++

前端 未结 2 1349
温柔的废话
温柔的废话 2021-01-07 22:21

For example, here\'s a reference for fread:

size_t fread ( void * ptr, size_t size, size_t count, FILE * stream );

Reads an array of count

2条回答
  •  暖寄归人
    2021-01-07 22:51

    CHAR_BIT. The bit width of a byte is implementation-defined and is available to the developer via the CHAR_BIT macro.

提交回复
热议问题