Given variables rank, region, and amount, declare and assign the following pointers: character pointer rankPointer is assigned with the address of rank. integer pointer region Pointer is assigned with the address of region. double pointer amountPointer is assigned with the address of amount. Ex: If the input is C 1 4800.0, then the output is: Oil grade: C Region of import: 1 Quantity: 4800.0

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter10: Pointers
Section10.3: Pointer Arithmetic
Problem 5E
icon
Related questions
Question

C+++ Coding I need help wtih Pointer Basics

Please see attached. 

CHALLENGE
ACTIVITY
424056.2330114.gx3zqy7
Start
Given variables rank, region, and amount, declare and assign the following pointers:
character pointer rankPointer is assigned with the address of rank.
• integer pointer region Pointer is assigned with the address of region.
• double pointer amountPointer is assigned with the address of amount.
1.1.3: Pointer basics.
Ex: If the input is C 1 4800.0, then the output is:
Oil grade: C
Region of import: 1
Quantity: 4800.0
1 #include <iostream>
2 #include <iomanip>
3 using namespace std;
4567890
5 int main() {
10
11
12
13
14
15
16
17
char rank;
int region;
double amount;
/* Your code goes here */
cin >> rank;
cin >> region;
cin >> amount;
cout << "Oil grade: " << *rankPointer << endl;
cout << "Region of import: " << *regionPointer << endl;
Transcribed Image Text:CHALLENGE ACTIVITY 424056.2330114.gx3zqy7 Start Given variables rank, region, and amount, declare and assign the following pointers: character pointer rankPointer is assigned with the address of rank. • integer pointer region Pointer is assigned with the address of region. • double pointer amountPointer is assigned with the address of amount. 1.1.3: Pointer basics. Ex: If the input is C 1 4800.0, then the output is: Oil grade: C Region of import: 1 Quantity: 4800.0 1 #include <iostream> 2 #include <iomanip> 3 using namespace std; 4567890 5 int main() { 10 11 12 13 14 15 16 17 char rank; int region; double amount; /* Your code goes here */ cin >> rank; cin >> region; cin >> amount; cout << "Oil grade: " << *rankPointer << endl; cout << "Region of import: " << *regionPointer << endl;
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Concept of pointer parameter
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
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning
New Perspectives on HTML5, CSS3, and JavaScript
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:
9781305503922
Author:
Patrick M. Carey
Publisher:
Cengage Learning