Answers for "cpp check length of array argument"

C
1

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

Code answers related to "C"

Browse Popular Code Answers by Language