Question
C++ please! Create an array of type double with 25 elements. Call a function to fill the array with random values generated to be in
C++ please!
Create an array of type double with 25 elements. Call a function to fill the array with random values generated to be in the range of -50 to +50. 1. Using standard array notation, print all values in the array on one line with 2 decimal points, separated by a space 2. Using array offset notation, print all values in the array, from last index to first, on one line, each separated by a space 3. Using pointer notation, print all negative values on one line, each separated by a space 4. Using pointer offset notation, print all positive values on one line, each separated by a space Print all numbers with 2 decimal places. Print a blank line and a description line above each set of values printed Reminder: array notation myArray[ x ]; array offset notation *(myArray + x); pointer notation * arrayPtr; pointer offset notation *(arrayPtr + x);
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started