babbage% gcc -o fork-3 fork-3.c && fork-3 The child process is active. The parent process continues. New data elements in parent: global = 10 local = 12 The value read from the parent is 20 Final data elements in child: global = 4 local = 5 Child finished Parent finished