Thread
:
Heap and Stack manipulation
View Single Post
xpi0t0s
Mentor
20Feb2009,21:40
Not without your own custom memory allocations. For example how would char *str=malloc(100) know which heap division to use? You'd need something like char *str=malloc(100,USE_DIV_3),and that doesn't exist.