Answers for "cpp declare array"

C++
2

number of elements in c++ array

#include <iostream>
using std::cout;

int a[] = { 1, 2, 3, 4, 5 };
int counta()
  {
  return sizeof( a ) / sizeof( a[ 0 ] );  // works, since a[] is an array
  }

int countb( int b[] )
  {
  return sizeof( b ) / sizeof( b[ 0 ] );  // fails, since b[] is a pointer
  }
Posted by: Guest on April-25-2020
0

c++ array

const int len = 3;
int arr[len];

arr[0] = 4;

int abc[4]{0,12,3}
Posted by: Guest on November-03-2020
-2

array syntax in c++

int foo[] = { 10, 20, 30 };
int foo[] { 10, 20, 30 };
Posted by: Guest on April-25-2020

Browse Popular Code Answers by Language