View Single Post
Mentor
20Feb2009,21:40  
xpi0t0s's Avatar
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.