Can someone help me find the solutions to the questions below?
1. Declare and initialize two ints yourPlace and myPlace. Make a pointer to each. Clearly print in table format:
a. the address of each int and the value of their pointers.
b. Each pointer, the dereferenced address of each pointer, and the address of each dereferenced pointer.
2. Declare an array, called squoosh, of ten floats. In tabular form print the address of each float right next the float itself. Then print squoosh (without a subscript), and right next to it print *squoosh.
3. Calculate the average of a number and its square in two different ways:
Via a regular ole function call
Via a function that accepts a pointer and changes the value of the input
4. Create an array of 3 digits numbers and send it to a function. The function should receive it using pointer notation. Also using pointer notation print out each number that has an odd middle digit.
7. Make a madlibs game: Ask the user to enter five nouns, five verbs, and five adjectives/adverbs. The words for each grammar category should be stored in their own array of strings. Write a clever little story with some blanks in it, into which the input words will be inserted at random.
8. Use cin.getline to store a sentence. (cin alone will quit recording after a space.) Create and print a new string that replaces any stars (*) in the original string with the string Frankenstein. Creating a new string is required.
9. Make a menu-driven interface that can do the following after receiving an input sentence. You must use function pointers. You should make use of string.h functions.
Find how many words are in the sentence.
Print a list of the number of letters in each word.
Check to see if any words are repeated.
Make a string out of every other word.
I am also a beginner "coder" and even I know that just plainly copy+pasting your hw assignment here is pathetic. No one is just simply going to do your hw for you. You must at least show effort and have some (if not all) of your assignments started and give others something to look at when they try to help you.
Not trying to sound harsh. Just looking out for you.