What is a "byte" according to C11?

From C11 Standard Project, Section Chapter 1 Section 3:

3.6
byte : addressable storage unit large enough to hold any member of the main character runtime set

NOTE 1 You can uniquely express the address of each individual byte of an object .

So, do I interpret this correctly when I come to the conclusion that only addressable memory architectures are standard? Or am I reading it wrong?

+5
source share
3 answers

, , C - . C , . "", 64 , . , " " , 8- , 64- , , , .

+7

, , . , ():

, (...)

, , , , , - , .

+2

Yes, just put:
According to the standard, the byte is the smallest addressable memory.

0
source

All Articles