Using the following program, explain what the output will be. (5 pts) #include #include #include int main() { int value = 5; pid_t pid = fork(); if(pid==0) { /* child process */ value+=15; printf(“CHILD: value=%d ”, value); Return 0; } else { /* parent process */ wait(NULL); printf(“PARENT: value=%d ”, value); return 0; } }