Hii all,
Myself is sarin and i am using RCM5700 module with dynamic 10.64 version. I got malloc command in 10.64 where i can dynamically allocate memory.
main()
{
far int *ptr1;
ptr1 = (far int *)malloc(10);............................(a)
*ptr1 = 1020;
}
In line number (a) it stops when running the program and gives error
like “could not allocate application heap; Address 00:1e00”. When i debug there is no syntax error shown.
Please help me to allocate memory dynamically
rgds
sarin