Given the following program/code segment program, how many times is "hello\n" printed on the standard output device? Jus
Posted: Sun May 15, 2022 12:54 pm
Given the following program/code segment program, how many times is "hello\n" printed on the standard output device? Justify your answer. import os def main(): str1 = "hello, world!" , for i in range(3): os. fork() print(str1) if __name__ ' __main__': main()