(Solved): In C++
\begin{tabular}{l|l} Working with Dynamic & largelntegers.cpp lar ...
In C++
\begin{tabular}{l|l} Working with Dynamic & largelntegers.cpp largelntegers.h \\ Integers & \( 1 \mathrm{~V} \) main.cpp \\ & 2 \\ Instructions & 3 #ifndef H_largeIntegers \\ & 4 #define H_largeIntegers \\ & 5 \\ Programming Exercise 11 in Chapter 8 & 6 #include \\ explains how to add large integers & 7 using namespace std; \\ using arrays. However, in that exercise, & 8 \\ the program could add only integers & 9 \\ of, at most, 20 digits. This chapter & 10 #endif \\ 11 \end{tabular} explains how to work with dynamic integers. Design a class named largelntegers such that an object of this class can store an integer of any number of digits. Add operations to add, subtract, multiply, and compare integers stored in two objects. Also add constructors to properly initialize objects and functions to set, retrieve, and print the values of objects. Write a program to test your class.