Answers for "find size of array c++ by function"

C++
1

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 "find size of array c++ by function"

Browse Popular Code Answers by Language