// 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 (int argc, char *argv[]) { if (atoi(argv[1]) == atoi(argv[2])) { printf("The two numbers are the same\n"); } else { printf("The two numbers are different\n"); } return 0; }