Array in C++ Online Coaching in Ahmedabad
Array is collection of more than one data at same location of same type. Syntax: data type name[size]; This will create memory of specified size-data.
seen from India

seen from Namibia
seen from Brazil
seen from Philippines

seen from Jamaica

seen from Algeria
seen from Ghana

seen from Thailand

seen from Algeria

seen from United Kingdom

seen from United States
seen from United States
seen from Namibia
seen from Macao SAR China
seen from Jamaica

seen from United States
seen from China

seen from Norway
seen from China
seen from South Africa
Array in C++ Online Coaching in Ahmedabad
Array is collection of more than one data at same location of same type. Syntax: data type name[size]; This will create memory of specified size-data.
Array is collection of more than one data at same location of same type. Syntax: data type name[size]; This will create memory of specified size-data. For example, an array containing 4 integer val…
Array in C++ Online Coaching in Ahmedabad
Array is collection of more than one data at same location of same type.
Syntax:
data type name[size];
This will create memory of specified size-data.
For example, an array containing 4 integer values of type int called rn could be represented as:
int rn[4];
3
2
1
0In array memory always start from 0.
Initializing arrays
By default, regular arrays of local scope (for example, those declared within a function) are left uninitialized. This means that none of its elements are set to any particular value; their contents are undetermined at the point the array is declared. But the elements in an array can be explicitly initialized to specific values when it is declared, by enclosing those initial values in braces {}. For example:
int marks[5] = { 16, 27, 77, 40, 81 };
Accessing the values of an array
marks[2] = 75;
EXAMPLE
#include <iostream>
using namespace std;
int MARKS[] = {16, 2, 77, 40, 12071};
int n, result=0;
int main ()
{
for ( n=0 ; n<5 ; ++n )
{
result += foo[n];
}
cout << result;
return 0;
}
To learn more about C++ at TCCI, Online Engineering class, EC Engineering class, civil engineering class, computer engineering class
Call us @ 98256 18292.
Visit us @ http://tccicomputercoaching.com/