In higher level languages I would be able something similar to this example in C and it would be fine. However, when I compile this C example it complains bitterly. How can I assign new arrays to the array I declared?
int values[3];
if(1)
values = {1,2,3};
printf("%i", values[0]);
Thanks.