subject

Create (and update) a program that will manipulate variables via their value and their memory. ---Programs
Program 1 - Create an array of 15 ints and place a random number into each slot in the array. Then loop through that array and print out the value and memory address of each item.
Program 2 - Create a new array of 15 ints and place a random number into each slot in the array. Create a function with parameters for both a int and an int pointer. This function should print out the data attached to each item as well as the memory address of each item. Loop through the array and pass each item in the array to this function.
Note: This will require you to pass the same variable to the same function twice. Once by value and once by address;
Program 3 -
Part-1
Create a struct of cars that holds a char array of size 32 for a make, a char array of size 32 for a model, an enum for color (this will need to be created), and an int for year. Create an statically sized array of 3 cars and ask the user to input the make, model, color, year, and mileage. The color question should provide a list of color options that links to the color enum. The mileage should be a random number. Once that is done, loop through the structs and display all the data to the screen.
Example Output
Car 1 – 2003 Gray Ford Mustang with 4,000 miles
Car 2 – 2016 White Ford Fusion with 567 miles
Car 3 - 2019 Silver Tesla Cybertruck with 127,204 miles
Part 2
Add a menu that provides an option to repaint a car after they have been created. You will need to implement the repaintCar function.
1
void repaintCar(Car* car, Color color);
Part 3
Let's move our display logic into a separate function. We will make two versions. One will use a static Car and the other will use a Car pointer. Implement both functions and print the cars out to the console using both versions.
1
void printCar(Car c);
2
void printCarPointer(Car* c);
C/C++
Example Output
Car 1 – 2003 Gray Ford Mustang with 4,000 miles
Car 2 – 2016 White Ford Fusion with 567 miles
Car 3 - 2019 Silver Tesla Cybertruck with 127,204 miles
Car* 1 – 2003 Gray Ford Mustang with 4,000 miles
Car* 2 – 2016 White Ford Fusion with 567 miles
Car* 3 - 2019 Silver Tesla Cybertruck with 127,204 miles
Part 4
We need to add the ability to add mileage to the car. Create a function that will work with the for loop below to add mileage to the car.
1
for(int i = 0; i < 3; i++){
2
addMileage(&cars[i], 500);
3
}
C/C++

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 13:30
In mmf2, what is the grid? a. a toolbar that lets you open libraries and use the objects in them in your games b. an object that creates the background or other scenery for a game c. a set of vertical and horizontal lines that are usually invisible in the play area d. a set of vertical and horizontal lines that are usually visible in the play area
Answers: 1
question
Computers and Technology, 22.06.2019 11:00
in 2007, floridians died in alcohol-related collisions.a.  501b.  1,051c.  5,015d.  10,839
Answers: 1
question
Computers and Technology, 23.06.2019 00:30
Write the html code to make a link out of the text β€œall about puppies”. it should link to a pdf called β€œpuppies.pdf” inside the β€œdocuments” folder. the pdf should open in a new window.
Answers: 2
question
Computers and Technology, 24.06.2019 05:30
Someone plzz me which of these defines a social search? a. asking a search engine a question that is answered by a real person on the other sideb. modifying search results based on popularity of a web pagec.modifying search results based on a ranking of a web page
Answers: 2
You know the right answer?
Create (and update) a program that will manipulate variables via their value and their memory. ---P...
Questions
question
Social Studies, 15.10.2019 05:30
Questions on the website: 13722359