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 elements, each one with a size of "size bytes"... So how many BITS will read an fread(&x, 1, 1, stream)? Eight or CHAR_BIT?

link|improve this question
2  
That's from the Linux manpage, right? The C standard's definition doesn't mention bytes at all: "The fread function reads, into the array pointed to by ptr, up to nmemb elements whose size is specified by size, from the stream pointed to by stream." – larsmans Nov 28 '11 at 13:27
5  
And given that it's from the Linux man page, CHAR_BIT is guaranteed (by Posix) to be equal to 8. – Steve Jessop Nov 28 '11 at 13:37
1  
The C standard does mention bytes. Section 3.6 defines a byte as the smallest addressable unit. – JeremyP Nov 28 '11 at 14:00
1  
@JeremyP: the C standard does. "The C standard's definition" (of fread) doesn't. – Steve Jessop Nov 28 '11 at 15:35
8  
Additional $0.02: When you need an unambiguous term to refer to an 8-bit piece of meaningful data, call it an "octet". – Brian McFarland Nov 28 '11 at 16:54
show 5 more comments
feedback

2 Answers

C99, §3.6:

byte

addressable unit of data storage large enough to hold any member of the basic character set of the execution environment

and §5.2.4.2.1:

CHAR_BIT — number of bits for smallest object that is not a bit-field (byte)

Thus, a "byte" contains CHAR_BIT bits.

link|improve this answer
+1 for citing the standard. :) – Jonathan Grynspan Nov 28 '11 at 15:56
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.