int value[64];
for ( int i = 0; i < 64 ; i++)
{
value[i] = i;
}
return value;
value is defined in the local scope of initialize() and also, if you could assume that was valid, you return the memory location on the first iteration, hence making the contents of value[] garbage after value[0].
When you define a variable in the local scope, the variable ceases to exist when the function reaches termination. Returning a pointer to a local variable invokes Undefined Behaviour cause you access (and use) memory you should not.
Undefined Behaviour mate ;)
If you want to make it correct you should do something like :
int * result = malloc(sizeof(int)* 64);
if(!result)
return 0;
for ( int i = 0; i < 64 ; i++)
{
result[i] = i;
}
return result;
And also check in your main() if initialize() returns 0 or not (AKA if malloc() succeeded or Failed) and if the return value was not 0 make sure you free() the memory.
int main( )
{
int * p;
p = intialize();
if(p)
{
p[32] = 100;
printf("%d", p[32]);
free(p);
}
return 0;
}
You could also have the free() outside the if clause, cause doing a free(0) is safe.