cpp get first element of array code example
Example 1: how to get the last value from array in c++
a = [1,2,3,4,5,6,7]
int x = a.size()
// last element of list
a[x-1] // ourput -> 7
Example 2: How to get the last element of an array in C++ using std::array
#include <array>
std::array<int, 5> a {1, 2, 3, 4, 5};
int i = a[a.size() - 1]; // The last variable stored in i