Answers for "how to get a size of an array in c++"

C++
2

find length of array c++

#include <iostream>
using namespace std;
int main() {
   int arr[5] = {4, 1, 8, 2, 9};
   int len = sizeof(arr)/sizeof(arr[0]);
   cout << "The length of the array is: " << len;
   return 0;
}
Posted by: Guest on March-08-2021
0

how to find size of int array in c++

#include <iostream>
using namespace std;

int main() {
	int arr[] = {10,20,30,40,50,60};
	int arrSize = sizeof(arr)/sizeof(arr[0]);
	cout << "The size of the array is: " << arrSize;
	return 0;
{
Posted by: Guest on January-13-2022

Code answers related to "how to get a size of an array in c++"

Browse Popular Code Answers by Language