What is the correct way to initialize all elements of an array to zero in C?
int arr[5] = (0);
int arr[5] = {0};
int arr[5] = 0;
int arr[5] = [0];
This question is part of this quiz :