Computers and Technology

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++

answer
Answers: 1

Other questions on the subject: Computers and Technology

image
Computers and Technology, 21.06.2019 22:40, bartekpiglo
Write an assembly program with the following specifications. a). in the main block, you should have two registers r4 and r5. they should be checked in an infinite loop. if r4 is greater than r5, then the greater subroutine will be called. if r4 is less than r5, then the less subroutine will be called. if r4 equals r5, then no operations will be done
Answers: 1
image
Computers and Technology, 23.06.2019 15:30, yanicas
Hey so i was just trying out some game hacks so i took a paste from online and built it in my visual studio and then suddenly my computer was working or clicking on stuff on its own am i hacked?
Answers: 1
image
Computers and Technology, 24.06.2019 13:30, nina288
What process should be followed while giving a reference? sam has given a reference of his previous manager in his resume. sam should him in advance that the potential employers will him.
Answers: 1
image
Computers and Technology, 24.06.2019 15:30, jerry1496
If you want to delete an entire word at a time, which key should you press along with the backspace or delete key?
Answers: 1
Do you know the correct answer?
Create (and update) a program that will manipulate variables via their value and their memory. ---P...

Questions in other subjects:

Konu
History, 22.12.2020 23:40
Konu
Spanish, 22.12.2020 23:40
Konu
Mathematics, 22.12.2020 23:40