345 views
0 votes
0 votes
int* func() {
    int* mem = malloc(1024);
    return mem;
}

int* mem = func();

Can anyone pls explain the code?

Please log in or register to answer this question.

Related questions