“Longitud de la matriz en CPP” Código de respuesta

encontrar la longitud de la matriz 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;
}
intricate_symbol

Longitud de la matriz en CPP

int size = sizeof(arr)/sizeof(arr[0])
Horrible Hare

Longitud de la matriz 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;
}
Spotless Spider

Cómo encontrar la longitud de una matriz en CPP

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

Respuestas similares a “Longitud de la matriz en CPP”

Preguntas similares a “Longitud de la matriz en CPP”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código