Why is this possible? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why is this possible?

I'm currently learning C++ and I've been told many many times that arrays need to have their lengths stated at instantiation, but when I was in the code playground, this worked: int myArr[] = {1, 2, 3}; cout << sizeof(myArr); The output was 12 since each int takes up 4 bytes and theres 3 of them, so that makes sense to me, but why can I create this array without stating the length between the brackets?

14th Oct 2020, 5:14 PM
elide
elide - avatar
1 Answer
+ 2
In this case, the compiler will determine the size of the one-dimensional array itself. The size of the array can be omitted only when it is initialized; with the usual declaration of an array, the size of the array must be specified
14th Oct 2020, 5:24 PM
Rustam Yumagujin
Rustam Yumagujin - avatar