Question: C++ Practice 0-1: Arrays and Pointers Write a program that reads up to ten nonnegative integers into an array called arr, and then write the
Practice 0-1: Arrays and Pointers Write a program that reads up to ten nonnegative integers into an array called arr, and then write the integers and the address of the array back to the screen The program should display the addresses and the elements in the array using both array and pointers Practice 0: Sample Dialogue nter nonnegat i ve numbers11 22 33 44 55 b6 7T 88 99 isplay the addresses and values of the elements using arrays arr [0]: 00F3F894, arr [O 11 ar00F3FB98, arr[1]: 22 arr [2]: 0OF3F89C, arr (2]: 33 arr 3]: 00F3FBA0, arr (3]: 44 arr[6]: 00F3FBAC. arr[6]: 7 arr [9]: 00F3F888. arr [9]: 1 isplay the addresses and values of the elements using pointers trToArr0: OOF3FB94. (ptrToArr+0): 11 trToAr3: 0OF3FBAO.(ptrToArr+3): 44 trToArr6: 0OF3FBAC.(ptrToArr+6): 77 trToArr9: 0OF3FBB8. (ptrToArr 9): 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
