- #176
yungman
- 5,755
- 293
This is a language most commonly used in firmware in hardware level.Mark44 said:You've been told this several times. An address, currently, is an integer, but its type is not int! Until you come to terms with this, you aren't going to understand pointers.
Also, and I've said this before, addresses in the past were not integers.
Hardware and high-level language are two entirely different things.
When I said address is an integer, I meant it is a whole number, not a double. I know *ptr point to an address. I don't mean *ptr = x where x is an integer.
Or else why define int **pptr; and pptr = &ptr ? Maybe I should say address is a whole number like integer.