...
It is sometimes necessary in low level kernel or graphics code to access memory at a specific location, requiring a literal integer to pointer to conversion. In this non-compliant code, a pointer is set directly to an integer constant, where it is unknown whether the result will be as intended.
Code Block | ||
---|---|---|
| ||
unsigned int *ptr = 0xcfcfcfcf; |
...