Which of the following commands will send output from the program myapp to both standard output (stdout) and the file file1.1og?
A.
cat < myapp | cat > file1.1og
B.
myapp 0>&1 | cat > file1.1og
C.
myapp | cat > file1.1og
D.
myapp| tee file1.1og
E.
tee myapp file1.1og