Answered step by step
Verified Expert Solution
Question
1 Approved Answer
#include using namespace std; int main() { int length1; int length2; int* lengthPointer; cin >> length1; cin >> length2; // ENTER THE MISSING PIECE OF
#include
int main() { int length1; int length2; int* lengthPointer;
cin >> length1; cin >> length2;
// ENTER THE MISSING PIECE OF CODE HERE AND TEST IT IN C++. DO NOT MODIFY THE REST OF THE CODE. (THANK YOU)
if (lengthPointer == nullptr) { cout
return 0; }
Assign lengthPointer with the address of the greater length. If the lengths are the same, then assign lengthPointer with nullptr. Ex: If the input is 1580 , then the output is: 80 is the greater length. lengthPointer points to length 2Step 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