Question: C Programming 2. Create an application to allocate enough memory to store 10 integer values. Using a while loop, a counter, and an incrementing pointer,
C Programming
2. Create an application to allocate enough memory to store 10 integer values. Using a while loop, a counter, and an incrementing pointer, set the initial values to: 1, 3, 6, 10, 15, 21, 28, 36, 45, 55 (counter variable added to running sum) Prompt the user for a value and the position where the number is to be inserted. Rather than simply overwriting the value at this position, your program will shift the current values starting at the insertion point. Example: Stored values are 1, 3, 6, 10, 15, 21, 28, 36, 45, 55 User is to enter 99 at position 3 Stored values become 1, 3, 99, 6, 10, 15, 21, 28, 36, 45 Display each value in the ordered memory space
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
