Answers for "c++ code array"

C++
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