Horje
length of array in cpp Code Example
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;
}
length of array in cpp
int size = sizeof(arr)/sizeof(arr[0])
array length c++
// array::size
#include <iostream>
#include <array>

int main ()
{
  std::array<int,5> myints;
  std::cout << "size of myints: " << myints.size() << std::endl;
  std::cout << "sizeof(myints): " << sizeof(myints) << std::endl;

  return 0;
}




Cpp

Related
Palindrome Checker Code Example Palindrome Checker Code Example
min heap priority queue c++ Code Example min heap priority queue c++ Code Example
check if set contains element c++ Code Example check if set contains element c++ Code Example
reverse string c++ Code Example reverse string c++ Code Example
hamming distance c++ Code Example hamming distance c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7