Question: This is all the problem gives you char *wrd [5] char *ant [5] {good, ugly, sunny, sad, NULL}; {bad, nice, cloudy, happy, NULL}; 7. Define
![This is all the problem gives you char *wrd [5] char](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f38cbc983d8_30866f38cbc34700.jpg)
This is all the problem gives you
char *wrd [5] char *ant [5] {"good", "ugly", "sunny", "sad", NULL}; {"bad", "nice", "cloudy", "happy", NULL}; 7. Define a struct with two fields, one for a list of words, the other one for a list of their antonyms. 8. Define a struct variable and initialize it: use the two lists shown above. 9. Given ptr, a pointer to this structure A. Write code to print the first string in the first list // good B. Write code to print the last letter in the last string of the second list // y 10. Given ptr, a pointer to this structure, write a loop to print for each word its antonym (define and initialize other variables as needed). char *wrd [5] char *ant [5] {"good", "ugly", "sunny", "sad", NULL}; {"bad", "nice", "cloudy", "happy", NULL}; 7. Define a struct with two fields, one for a list of words, the other one for a list of their antonyms. 8. Define a struct variable and initialize it: use the two lists shown above. 9. Given ptr, a pointer to this structure A. Write code to print the first string in the first list // good B. Write code to print the last letter in the last string of the second list // y 10. Given ptr, a pointer to this structure, write a loop to print for each word its antonym (define and initialize other variables as needed)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
