Search
 
SCRIPT & CODE EXAMPLE
 

CPP

c++ get length of array

int arr[5];
int len = sizeof(arr) / sizeof(arr[0]);
// returns 5
Comment

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;
}
Comment

array length c++

#include <iostream>
using namespace std;

#define size(type) ((char *)(&type+1)-(char*)(&type))

int main(){
  int arr[5] = {1, 2, 3, 4, 5};
  cout << size(arr) / size(arr[0]) << endl; //returns 5
  //alternatively
  cout << sizeof(arr) / sizeof(int) << endl; //returns 5
}
Comment

length of array in cpp

int size = sizeof(arr)/sizeof(arr[0])
Comment

array length c++

#include <iostream>
#define ARRAYSIZE(array) (sizeof(array)/sizeof(array[0]))

int main()
{
    int myArray[] = {1,5,46,2,45,7,5};
    std::cout<< ARRAYSIZE(myArray);
    return 0;
}
Comment

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;
}
Comment

how to find the length of an array in cpp

// you can divide the size of an array 
// by the size of each element (in bytes)
int len = sizeof(arr) / sizeof(arr[0]);
Comment

PREVIOUS NEXT
Code Example
Cpp :: c++ split string by several space 
Cpp :: run cmd command c++ 
Cpp :: c++ triple 
Cpp :: how to initialize array with new in c++ 
Cpp :: find index of element in array c++ 
Cpp :: how to declare a 2d boolean vector in c++ 
Cpp :: why is using namespace std a bad practice 
Cpp :: int to hexadecimal in c++ 
Cpp :: std vector c++ 
Cpp :: c++ lambda 
Cpp :: c++ initialize vector of vector with size 
Cpp :: how to append to a vector c++ 
Cpp :: calculate factorial 
Cpp :: remove space in string c++ 
Cpp :: std vector random shuffle 
Cpp :: what is - in c++ 
Cpp :: c++ int length 
Cpp :: c++ print out workds 
Cpp :: notepad++ 
Cpp :: c++ erase remove 
Cpp :: life the universe and everything solution c++ 
Cpp :: set to vector 
Cpp :: how to find the length of an array in cpp 
Cpp :: c++ write to csv file append 
Cpp :: passing structure to function in c++ example 
Cpp :: inheritance example in C plus plus 
Cpp :: overload subscript operator cpp 
Cpp :: c++ check if key exists in map 
Cpp :: clear previous terminal output c++ 
Cpp :: for statement c++ 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =