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