mirror of https://github.com/t1meshift/os_labs.git
12 lines
173 B
C
12 lines
173 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <sys/mman.h>
|
||
|
|
||
|
int main() {
|
||
|
int *data = malloc(100 * sizeof(int));
|
||
|
free(data);
|
||
|
|
||
|
printf("%d\n", data[96]);
|
||
|
|
||
|
return 0;
|
||
|
}
|