maypc2309 maypc2309 25-01-2024 Computers and Technology contestada How can you improve (or shorten) the given code snippet?int a[5] = {0, 1, 2, 3, 4};a) No improvement neededb) Use a loop for initializationc) Use shorthand notation: int a[] = {0, 1, 2, 3, 4};d) Remove the array declaration