Question: #include using namespace std; int main() { int length1; int length2; int* lengthPointer; cin >> length1; cin >> length2; // ENTER THE MISSING PIECE OF

 #include using namespace std; int main() { int length1; int length2;

#include using namespace std;

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 2

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!