Question: Write a program that times how long it takes to issue 100,000 one-byte writes in each of two ways. First, time how long it takes to use the Posix system calls creat(), write(), and close() directly. Then see how long these writes take if the program uses the stdio library calls (e.g., fopen(), fwrite(), and fclose()) instead. Explain your results.