Q. What are the elements present in the array of the following C code?
Code:int array[5] = {5};
β
Correct Answer: (B)
5, 0, 0, 0, 0
int array[5] = {5};
You must be Logged in to update hint/solution