Why does this code segment give segmentation fault?
#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <string.h>
int main()
{
void *ptr;
ptr=mmap(NULL, 10, PROT_READ|PROT_WRITE, MAP_ANONYMOUS, -1, 0);
strcpy(ptr, "Hello");
}
Or better, i would like to have: char *ptr=malloc(10); then pass this argument to mmap. Both gives SIGSEGV.
