“Jak znaleźć długość tablicy w CPP” Kod odpowiedzi

Znajdź długość tablicy 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

Długość tablicy w CPP

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

Jak znaleźć rozmiar tablicy znaków w C

Instead of sizeof() for finding the length of strings or character 
arrays, just use strlen(string_name) with the header file
#include <cstring>   
it's easier.
Important Ibex

Jak znaleźć długość tablicy w 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

Odpowiedzi podobne do “Jak znaleźć długość tablicy w CPP”

Pytania podobne do “Jak znaleźć długość tablicy w CPP”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu