Given variables category, heat, and voltage, declare and assign the following pointers: • character pointer categoryPointer is assigned with the address of category. • integer pointer heatPointer is assigned with the address of heat. • double pointer voltagePointer is assigned with the address of voltage. Ex: If the input is V 150 5.5, then the output is: Product category: V Operational limit: 150 degrees at 5.5 volts. 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20} char category; int heat; double voltage; *Your code goes here */ cin >> category; cin >> heat; cin >> voltage; cout << "Product category: " << *categoryPointer << endl; cout << "Operational limit: << *heatPointer << return 0; degrees at " << fixed << setprecision (1) << *vol

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

please give the code 

Given variables category, heat, and voltage, declare and assign the following pointers:
character pointer categoryPointer is assigned with the address of category.
• integer pointer heatPointer is assigned with the address of heat.
double pointer voltagePointer is assigned with the address of voltage.
Ex: If the input is V 150 5.5, then the output is:
Product category: V
Operational limit: 150 degrees at 5.5 volts.
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20}
char category;
int heat;
double voltage;
* Your code goes here */
cin>> category;
cin >> heat;
cin>> voltage;
cout << "Product category: " << *categoryPointer << endl;
cout << "Operational limit: "<< *heatPointer << " degrees at " << fixed << setprecision (1) << *vol
return 0;
Transcribed Image Text:Given variables category, heat, and voltage, declare and assign the following pointers: character pointer categoryPointer is assigned with the address of category. • integer pointer heatPointer is assigned with the address of heat. double pointer voltagePointer is assigned with the address of voltage. Ex: If the input is V 150 5.5, then the output is: Product category: V Operational limit: 150 degrees at 5.5 volts. 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20} char category; int heat; double voltage; * Your code goes here */ cin>> category; cin >> heat; cin>> voltage; cout << "Product category: " << *categoryPointer << endl; cout << "Operational limit: "<< *heatPointer << " degrees at " << fixed << setprecision (1) << *vol return 0;
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 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