+ 1
Is there any way to access the computer's memory without using address of operator (&)?
2 Answers
+ 2
If you know the physical address you wish to access, you can directly assign it.
char *pointer = 5;
int x = *pointer;
+ 1
you can use malloc, calloc and realloc:
http://www.cplusplus.com/reference/cstdlib/malloc/