// Write a C program that reads in words from standard input until Ctrl+D, // and checks whether a word read in as a command line argument is a substring // in the word. If so, then the word that was read in should be printed again // Assume max length of strings read is is 100 characters // $./array_substring courage age bloom encourage // blooming // blooming // potato // encourage // encourage // rage // rage // egg #include #include #define MAX 100 int main(int argc, char *argv[]) { // PUT YOUR CODE HERE return 0; }