Discussion :: Arrays
-
What will be printed after execution of the following code?
void main()
{
int arr[10] = {1,2,3,4,5};
printf("%d", arr[5]);
}
Answer : Option D
Explanation :
When an array is partially initialized at the time of declaration then the remaining elements of the array is initialized to 0 by default.
Be The First To Comment