The article talks about the size of the pointee in memory though, not the size of the pointer.
An 'int' is usually 4 bytes wide when compiling for 64-bit ISAs (at least I haven't seen situations yet where this isn't the case, my experience is limited to x86 and ARM though). Modern C fixes this ambiguity with sized integer types (e.g. int32_t vs int64_t).
>The article talks about the size of the pointee in memory though, not the size of the pointer.
Yes, you're right about the article's text. When I read gp ChrisSD's comment in isolation where he quotes ">A pointer is a memory address" -- followed immediately by him quoting ">On current mainstream Intel processors, _it_ occupies four bytes of memory"
... I thought the "_it_" was referring to a "pointer" instead of plain "int". It didn't occur to me to that the actual article has extra text in between those 2 extracted quotes which drastically changes the assumption of what the pronoun "it" means. My mistake.
> Pointers in C are a much higher level abstraction.
Not really; almost all programmers treat them as addresses and almost all compilers represent them that way. Regardless of what the standard actually says. Leading to surprises when this doesn't hold true, and awkwardnesses of the 16-bit x86 "near/far" pointers.
I mean, that's the only reason that "array[index]" and "index[array]" are interchangeable; you don't see that in other languages.
By C half-assedly trying to make "* " part of the name, just so you can use "* ptr" everywhere like it is an actual variable name, you get confusions such as this.
First "foo_ptr's type is int * ", but then "The pointer has a type, too, by the way. Its type is int.".
I also refuse to agree with "An int * * 's type is int * ". :)
But I guess "the type of `* ptr` is int, the type of `ptr` is int * " would be even more confusing.
isn't actually initialized as a pointer I changed all my C code to marking * before the variable name, fun times. It's helpful to think int as the base type and * the indicator of functionality like [] and ().
Also just found out the author was the developer of Adium [1], which is one of my favorite softwares (best logo) on macOS.
I used to use that years ago! I had to stop when everyone moved over to Facebook Chat (what became Messenger) and eventually made a breaking change Adium couldn't support.
24 comments
[ 3.0 ms ] story [ 62.8 ms ] threadThis is an amazingly wrong statement. In assembly you deal with memory addresses. Pointers in C are a much higher level abstraction.
> On current mainstream Intel processors, it occupies four bytes of memory (because an int is four bytes wide).
This depends on the compiler as well as the processor.
Yes. On x64 compilers targeting 64bit cpus, the following prints 8 instead of 4:
An 'int' is usually 4 bytes wide when compiling for 64-bit ISAs (at least I haven't seen situations yet where this isn't the case, my experience is limited to x86 and ARM though). Modern C fixes this ambiguity with sized integer types (e.g. int32_t vs int64_t).
Yes, you're right about the article's text. When I read gp ChrisSD's comment in isolation where he quotes ">A pointer is a memory address" -- followed immediately by him quoting ">On current mainstream Intel processors, _it_ occupies four bytes of memory"
... I thought the "_it_" was referring to a "pointer" instead of plain "int". It didn't occur to me to that the actual article has extra text in between those 2 extracted quotes which drastically changes the assumption of what the pronoun "it" means. My mistake.
C11 6.5.3.2p3 “The unary & operator yields the address of its operand. If the operand has type ‘type’, the result has type ‘pointer to type’.”
I understand the intention to warn about the abstraction C introduces, but you’ve confused things.
Pointers and addresses are perfectly covered.
What you really want to bring is what the Standard calls the “C abstract machine”, for which the memory model can be surprising.
Not really; almost all programmers treat them as addresses and almost all compilers represent them that way. Regardless of what the standard actually says. Leading to surprises when this doesn't hold true, and awkwardnesses of the 16-bit x86 "near/far" pointers.
I mean, that's the only reason that "array[index]" and "index[array]" are interchangeable; you don't see that in other languages.
No, void pointer arithmetic is not allowed by the C standard: https://stackoverflow.com/questions/3523145/pointer-arithmet...
OTOH, GCC documentation says "sizeof is also allowed on void and on function types, and returns 1".
First "foo_ptr's type is int * ", but then "The pointer has a type, too, by the way. Its type is int.".
I also refuse to agree with "An int * * 's type is int * ". :)
But I guess "the type of `* ptr` is int, the type of `ptr` is int * " would be even more confusing.
A demonstration of a declaration statement where the asterisk operator binds to an identifier rather than to a type:
A demonstration of a different declaration where the asterisk operator does not bind to an identifier, as an identifier isn't even needed: So the real answer is that it depends on what you're doing. Terribly clunky.Interestingly the D programming language mostly keeps C's syntax, but handles multiple declarations differently. https://dlang.org/spec/declaration.html#declaration_syntax
Also just found out the author was the developer of Adium [1], which is one of my favorite softwares (best logo) on macOS.
[0] http://c-faq.com/decl/charstarws.html
[1] https://adium.im/
Edit: corrected code quotation.
1[array] == array[1]
Now add in some poorly named variables for some real fun
https://github.com/Droogans/unmaintainable-code#cs-eccentric...