In how many ways we can declare an array in C programming? if there are many ways to declare an array in C, what are the best practices or best way among?
So far I have been initializing an array like this:
int myArray[SIZE] = {1,2,3,4....};
What are the other ways do the same?