Let's say I have a 1D dynamic array, that I want to fill with fibonacci numbers.
User enters size as 15, so I want first 15 fibonacci numbers.
So my question is this:
int* arr = new int [size];
and this
int* arr = new int [size]{};
What do {}
do ?, and what is the difference ?