【C】Pointer (6) About Value

※ 日本語ページはこちら

To understand pointer, I think value in C should be understood precisely.

Here is what standard says.

value
precise meaning of the contents of an object when interpreted as having a specific type

ref: http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf#page=18

In the end, object has some contents which are either 0 or 1 in memories, caches , registers, etc.

If I could complement , I would say below.

value
precise meaning of the content(s) of an object. To have precise meaning, content(s) of object must be interpreted with a specific type. If content(s) of object do not have precise meaning, the contents would not be regarded  as value(s) .

That’s all for this time.