Answers for "get the first element of array c++"

C++
1

get the first element of array c++

int arr = [1,2,3,4];
cout << arr[0];			//printing the first element of the array arr
Posted by: Guest on November-20-2020
0

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
Posted by: Guest on September-07-2020

Code answers related to "get the first element of array c++"

Browse Popular Code Answers by Language