Could someone please tell me how I can initialize an array to 1 please? The array has a size of 101 and the only way I can get it to set to 1 is to type:

#define ARRAY_SIZE 101
#define TRUE 1
#define FALSE 0

int array [ARRAY_SIZE] = {1,1,1,1,1...},

with 101 1's!! What's the shorthand way of achieving this?