I can declare and initialize an array like this:
int dest_linesize[4] = { 4 , 0 , 0 , 0 };
I can always assign values to the individual members of the array by:
dest_linesize[0] = 5;
But can I assign multiple values with something like this?
dest_linesize = { 4 , 3 , 1 , 0 };