// Read in two strings from the command line arguments and state // whether the two strings are the same or not // Sasha Week 4 Lecture 8: Command Line Arguments #include // What else should we include if we want to compare two strings? #include int main (/*what should go in here if I want to read from command line?*/) { printf("The two strings are the same\n"); printf("The two strings are different\n"); return 0; }