For my embedded systems application, I want to allocate memory from a particular address. I know it can be dangerous but I just want to do it for testing purpose. So If I could point array globally to a particular memory address I can actually allocate array size of memory. I can point integer to a specific memory address like:
int *fsp_new_addr = (int*) 0xFF000000;
how can I do same thing for array, or is there any alternative way to do this task ?