Parsing command-line arguments in C
I’m trying to write a program that can compare two files line by line, word by word, or character by character in C. It has to be able to read in command line options -l, -w, -i or –… if the option is -l, it compares the files line by line. if the option is … Read more