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, 22.06.2019 02:50
Which of the following had the greatest influence on opening the internet to the generly public
Answers: 1
question
Computers and Technology, 22.06.2019 19:00
In he example code, what does the title attribute create? a tool tip an element a source a markup
Answers: 1
question
Computers and Technology, 22.06.2019 19:10
10. when you create a pivottable, you need to specify where to find the data for the pivottable. is it true
Answers: 2
question
Computers and Technology, 23.06.2019 15:20
In a game with three frames, where will the objects on layer 1 appear? a. next to the play area b. in the middle of the game c. behind everything else d. in front of everything else
Answers: 1
You know the right answer?
Create (and update) a program that will manipulate variables via their value and their memory. ---P...
Questions
Questions on the website: 13722363