Question: #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 2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
