How can you improve (or shorten) the given code snippet?
int a[5] = {0, 1, 2, 3, 4};
a) No improvement needed
b) Use a loop for initialization
c) Use shorthand notation: int a[] = {0, 1, 2, 3, 4};
d) Remove the array declaration