question 2 fork() and files scenario: 1) parent ouvre file.txt avec open() 2) parent fait fork() 3) parent fait wait() 4) child utilise le fd herite pour afficher le contenu via read()/write() 5) child sleep 5s, affiche "Child terminating", sleep 5s, exit(20) 6) parent affiche "My child has terminated" + status retour 7) parent termine