This lab is due by Saturday, May 27, 2023, 11:59 PM.
As with all labs you may, and are encouraged, to pair program a solution to this lab.  If you choose to pair program a solution, be sure that you individually understand how to generate the correct solution.
Pointer Instructions
The goal of this lab is to gain
	familiarity with using the concepts of pointers and addresses.  Complete the following steps inside your main().
	This lab will only be working with pointers on the stack.
- Declare an integer named iNumwith initial value9.
- Declare a double named dNumwith initial value14.25.
- Declare two pointers to integers named pINum1andpINum2with initial valuenullptr.
- Declare a pointer to a double named pDNumwith initial valuenullptr.
- Assign the address of iNumtopINum1.
- Output the address of iNumand be sure to identify to the user what you are displaying. There are two ways you can do this; you should do both, to convince yourself they are the same.
- Use pINum1to display the value ofiNum.
- Try to assign the address of dNumtopINum2. Compile your program. What error message do you see? Comment out this bad line of code, but include the error message as a comment with this line.
- Assign the address of dNumtopDNum.
- Output the address and then the value of dNumusingpDNumfor both.
- Directly change the value of iNumto7.
- Use pINum1to output the value ofiNum.
- Assign pINum2to have the same value aspINum1. Do not referenceiNum; instead use the address stored inpINum1.
- Output the address in pINum2. This should be the same as displayed in step 6.
- Output the value pointed to by pINum2.
- Using pINum2, change the value ofiNumto12.
- Output the value of iNumthree times, first usingpINum1, then usingpINum2, theniNumdirectly. In each case, identify what the user is seeing appropriately.
Lab Submission
Submit your main.cpp, Makefile file(s).
You will submit your solution to this lab with the rest of Set2. Detailed instructions for doing this are posted in Assignment 2.
This lab is due by Saturday, May 27, 2023, 11:59 PM.
As with all labs you may, and are encouraged, to pair program a solution to this lab.  If you choose to pair program a solution, be sure that you individually understand how to generate the correct solution.