1 post · 2 comments · 3 total
Active in: v/programming (3)
Yeah.. but in the case
int array[10],i; for (i = 0; i <=10 ; i++) array[i]=0;
It will be a memory stomp if variable i is stored adjacent to array, since array[10] will use a piece of memory without realizing that it is still in use
That was a very good explaination of how to avoid the issue (y)
Yeah.. but in the case
It will be a memory stomp if variable i is stored adjacent to array, since array[10] will use a piece of memory without realizing that it is still in use