Hello,
When creating son process with fork(), does it have its own copy of function's local variables? I mean if I change local variable of a function where son was created, will the father see the change or they have different copies of the variables? What about global variables or pointers to variables ?
Thank you