(i) Complete the program labeled with (1) to (5).

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter10: Pointers
Section10.1: Addresses And Pointers
Problem 7E
icon
Related questions
Question
Answer all with neat handwriting
(b) The C++ program in Figure Q2(b) is the program that display the contents of the speed
array by using the speedPtr pointer.
(i) Complete the program labeled with (1) to (5).
(ii) Analyze the full program and present the program output.
SOURCE CODE
#include <iostream>
using namespace std;
int main ( {
double speed [5]
= (8.30, 7.20, 1.68, 3.20, 4.10);
//Declare a pointer variable can point to double
(1)_
// Assign the address of the speed array to speedPtr.
*speedPtr;
speedPtr =
// Display the contents of the speed array.
cout <« "Here are the values in the speed array:\n";
(2)_
int count;
for (count = 0;
(3)
(4).
cout << ">>" << count+1 << ":
<<
(5)
<< endl;
return 0;
}
Figure Q2(b): C++
program
Transcribed Image Text:(b) The C++ program in Figure Q2(b) is the program that display the contents of the speed array by using the speedPtr pointer. (i) Complete the program labeled with (1) to (5). (ii) Analyze the full program and present the program output. SOURCE CODE #include <iostream> using namespace std; int main ( { double speed [5] = (8.30, 7.20, 1.68, 3.20, 4.10); //Declare a pointer variable can point to double (1)_ // Assign the address of the speed array to speedPtr. *speedPtr; speedPtr = // Display the contents of the speed array. cout <« "Here are the values in the speed array:\n"; (2)_ int count; for (count = 0; (3) (4). cout << ">>" << count+1 << ": << (5) << endl; return 0; } Figure Q2(b): C++ program
(a) In a C++ program, an int type of variable, maximumSpeed is initialized as follow;
int
maximumSpeed;
(i) Write the definition a pointer, named with ptr, and initialized it with the address of
maximumspeed, in a single line of statement.
(ii)
Write a cout statement that uses the ptr to display the contents of the
maximumSpeed.
Transcribed Image Text:(a) In a C++ program, an int type of variable, maximumSpeed is initialized as follow; int maximumSpeed; (i) Write the definition a pointer, named with ptr, and initialized it with the address of maximumspeed, in a single line of statement. (ii) Write a cout statement that uses the ptr to display the contents of the maximumSpeed.
Expert Solution
steps

Step by step

Solved in 4 steps

Blurred answer
Knowledge Booster
Keywords
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning