Answers for "what is the value if arrary in empty"

0

what is the value if arrary in empty

int baz [5] = { }; 
//When an initialization of values is provided for an array, C++ allows the possibility of leaving the square brackets empty []. In this case, the compiler will assume automatically a size for the array that matches the number of values included between the braces {}:
Posted by: Guest on July-25-2021

Code answers related to "what is the value if arrary in empty"

Browse Popular Code Answers by Language