+ 2
whats wrong with that?
3 Respuestas
+ 5
When you use the {} style of instantiation, it needs to be done at the same time as the declaration.
int arr[] = {1,2,3,4,5};
Then index count can optionally be omitted when using this type of instantiation.
+ 2
yes man!