I know that you can declare an array in C like this:
int nums[5] = {0,1,2,3,4};
However, can you do this?
int nums[5];
// more code....
nums = { 0,2,5,1,2};
In other words, can I initialize the array using the bracket notation at any other time than just the declaration? Thanks for your time, Sam