Introducing Arrays in c++





This video tutorial explains the concept of arrays in c++.
you will learn what is an array, how to define a array,syntax of array creation, how to initialise an array, how to retrieve the values of an array element, how array is stored in memory in detail with examples.

source code for this tutorial

#include <iostream>

using namespace std;

int main()
{
    int marks[] {45,55,65,75,85,95};
    cout << marks[1];
    return 0;
}