7 lines
87 B
C
7 lines
87 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main () {
|
|
printf("%p", realloc(0, 10));
|
|
}
|