I have a question about the following code:
int age = 20;
void * pointer;
pointer = alloc(sizeof(int), 0)
pointer = (void*) age;
How does it work?
What is the value of pointer
?
What happens with this piece of code in terms of the line :
pointer = (void*) age;