These are the files that we worked on during class. Some of the stuff that I typed at the command line included: $ gcc randoms.c test_randoms.c -o test # compile & link two .c files $ gcc -c randoms.c # compile to object file randoms.o $ gcc -c test_randoms.c # compile to object file test_randoms.o $ gcc randoms.o test_randoms.o -o test # link to create executable $ ./test < input.txt > output.txt # read from a file, write to another