Array update values correctly?

Hello,
I had a quick question. When i'm updating values in an array is it possible to use a loop to add values? for instance, say at position 20 i want to add the following numbers: 68, 2, 114,111
1
2
3
for (i=20; i < ARRAY_SIZE; i++)
    arrayList[i] = {68,2,114,111};


I receive the following error:

cannot convert '<brace-enclosed initializer list>' to 'int' in assignment|

No. Arrays always have fixed size so you can't add new elements.
Topic archived. No new replies allowed.