Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 2 Jahren
12345
  1. During the experiment, I have got in total 8 processes for n=3, and 32 processes for n=5.
  2. If we do fork() in a loop, in each iteration of a loop (but not at the same time), the number of processes increases by two (x * 2, where x is the current number of processes).
  3. That is why, in the end, the total number of processes will be 2^n.