Search
 
SCRIPT & CODE EXAMPLE
 

CPP

c++ get length of array

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

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;
{
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

c++ array size

#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

PREVIOUS NEXT
Code Example
Cpp :: concat two vectors c++ 
Cpp :: how to split string in c++ 
Cpp :: int main() { 
Cpp :: string to integer in c++ 
Cpp :: sort a vector c++ 
Cpp :: swap elements array c++ 
Cpp :: int to float c++ 
Cpp :: c++ add to array 
Cpp :: how to reverse a string in c++ 
Cpp :: how to declare a 2D vector in c++ of size m*n with value 0 
Cpp :: how to convert ascii to char in cpp 
Cpp :: stl vector 
Cpp :: image shapes in opencv c++ 
Cpp :: cpp func as const 
Cpp :: how to empty string c++ 
Cpp :: convert characters to lowercase c++ 
Cpp :: letter occurrence in string c++ 
Cpp :: Inner Section Sticky Scroll in elementor 
Cpp :: c++ random generator 
Cpp :: find in unordered_map c++ 
Cpp :: c++ program to generate all the prime numbers between 1 and n 
Cpp :: c++ syntax 
Cpp :: how to use a non const function from a const function 
Cpp :: enum c++ 
Cpp :: passing custom function in sort cpp 
Cpp :: how to sort array in c++ 
Cpp :: uparam(ref) 
Cpp :: glm has no member value_ptr 
Cpp :: c++ recorrer string 
Cpp :: how to print items in c++ 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =