Each fork() call creates a new process, doubling the number of processes. After 3 fork() calls: 1 → 2 → 4 → 8 processes. All 8 processes execute the printf statement, so 'Hello' prints 8 times. This is a classic process creation demonstration in UNIX systems.