Strange print after forkI see, so processes share the same logical addresses but have different physical addresses.
Strange print after forkAre you saying that the address written to stdout by printf("%p", &n); is the logical address (the o...
Strange print after forkHow in the earth they can share the same addresses and have two differents variables???
Strange print after forkI already know the copy-on-write technique, but I expected to see a change of address after the [cod...
Strange print after forkthe fork() call duplicates a process scope of addresses, in fact father and child have different val...