It should not be so hard. I mean in C,
int a[10];
is all you need. How to create an array of all zeros for a random size. I know the zero
>>> a = [0] * 10 >>> a [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]