I need my parent and child process to both be able to read and write the same variable (of type int) so it is \"global\" between the two processes.
I\'m assuming this wo
If you need to share memory, perhaps using threads instead of processes would be a better solution?