February 2020
Beginner to intermediate
616 pages
15h 16m
English
1. Let's assume that there is an array, p, with five elements, as follows:

Now, suppose you want to enter a value, say 99, at the third position. We will write a C program that will give the following output:

Here are the steps to follow to insert an element in an array:
#define max 100
int p[max]
Read now
Unlock full access