It,s me having the same problem..
I want to pass some parameters from the main method to some other method. u cannot declare any variable names or pointers. I'm having an array of int with size 12500. if u want any variable or a pointer, use array blocks for it. This my array.
int arr[12500];
Lets assume this is my main method.
int main(){
*(arr+12498)=2
free(??);
}
and this is my method
void free(??){ }
.
I want to pass the value of *(arr+12498) to void free() method without any variable or pointer declaration from outside the array. please help meeeeeee.