12 Jan Arrays in C++ Programming
Array is a collection of elements, of fixed size and type, for example, collection of 10 elements of type int. It is a data structure to group elements. In this lesson, we will learn how to work with arrays in C++ Language.
Let’s see another example to understand the concept.
A class has 20 students and you want to arrange the marks of all the 20 students. You can do this using the following two methods,
Method 1
Declare 20 different variables for each student’s marks, with its own identifier. That would be cumbersome, right?
Method 2
Declare a single array variable and store the 20 different values (marks) in contiguous memory locations i.e. use one-dimensional arrays.
You saw two methods above. Definitely, Method 2 is better, since you do not need to declare different variables for the same type of elements.
Accordingly, method 2 would look like the following,
Above you saw how arrays work in C++ Programming. For individual array elements, we use the index under square brackets. Index 0 is for first element, Index 1 is for the second element and it goes on. This means first element have index 0, and the last element is 19 for our 20 elements array for students’ marks. These terms would be new to you since you just begin learning arrays.
Now, we will get into more details about array declaration and initialization.
How to declare arrays in C++
For array declaration in C++ Programming, you need to do what you did in C Programming. Specify the datatype and the count of elements you want the array to be. Here, we are discussing about one-dimensional arrays. For example, write [3], if you want to declare an array with 3 elements.
The following syntax will make the concept clearer,
1 2 3 |
datatype name_of_array[size_of_array]; |
Here,
datatype: C++ data type such as int, float, etc.
name_of_array: The name of an array (variable)
size_of_array: The size of array under square brackets. Add value greater than zero.
The following example shows the perfect way of declaring arrays in C++,
1 2 3 |
int marks[3]; |
Above, we declared an array, with datatype int, name of array marks, with 3 elements, since the size we specified is 3. The variable array marks now holds 3 elements.
How to initialize arrays
To initialize arrays, you need to add the array values in a single line. Continuing the previous example,
1 2 3 |
int marks[3]; |
To initialize the above, add the array values like this in braces,
1 2 3 |
int marks[3] = {90, 75, 88}; |
Above, we added marks for 3 students by initializing our array. Always remember, element one would come at index 0 and the last element at size – 1. For example,
1 2 3 4 5 6 7 |
// index 0 for first element marks[0] = 90; // index (size-1) for last element marks[2] = 88 |
First C++ Program with Arrays
To move further, let us see a complete C++ Program, and learn how to declare and initialize arrays. We will also see how to access array elements,
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#include <iostream.h> #include <conio.h> void main () { // marks array with 3 elements int marks[ 3 ] = {90, 75, 88}; int i,j; // displaying all the elements for ( i = 0; i < 3; i++ ) { cout<<"\nMarks: "<<marks[i]; } // accessing array elements cout<<"\nMarks of student two: "<<marks[1]; cout<<"\nMarks of student three: "<<marks[2]; getch(); } |
The following is the output, displaying declaration, initialization of one-dimensional array and how to access individual array elements,
In this lesson we learned how to work with Arrays in C++ Programming. Now, we will learn how to implement Multi-Dimensional Arrays in C++.
Recommended Posts
If you liked the tutorial, spread the word and share the link and our website Studyopedia with others.
For Videos, Join Our YouTube Channel: Join Now
No Comments