What is the difference between
int* a = 0;
and
int* a = 10;
?
|
|
|
Note that
|
|||||||||||||||||
|
|
One of these should trigger a warning. Crank up your compiler warnings!
This one is okay. It declares a pointer
This is not okay. It declares the same pointer to an |
|||
|
|
Assign 0 to the pointer.
Assigns 10 to the pointer. Note, to the pointer (i.e. the variable which should contain an address) not the pointee! That last one is dangerous, as it defeats |
|||
|
|
|
First, these are not expressions, they're declarations.
This declares a pointer-to-integer and initializes it with a zero compile-time integer constant, which is transformed into a null pointer value. In other words, it declares a null pointer to integer.
This declares a pointer-to-integer that points to whatever your specific compiler defines to be at the address represented by the integer 10. In the vast majority of cases, there's nothing there, so you end up with undefined behavior by merely declaring this pointer. |
|||
|
|
|
Here we are asigning value to pointer, int* a = 0; means int a* = NULL; However, in c++, int* a = 10 wont compile, because "Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast", as compiler thinks 10 is integral type not a pointer. |
|||
|