// strings_length.c // // Written by YOUR-NAME (YOUR-ZID) // on TODAYS-DATE // // A program that scans in two strings, calculates the length, and outputs // which is lexicographically larger #include #include #define MAX_SIZE 1024 int main(void) { // Declare two strings // Scan in the first string // Scan in the second string // Calculate the string lengths // Print the lengths // Print which string is lexicographically larger return 0; }