I have a large array in C (not C++ if that makes a difference). I want to initialize all members to the same value. I could swear I once knew a simple way to do this. I could use memset() in my case, but isn't there a way to do this that is built right into the C syntax?

link|improve this question

feedback

13 Answers

up vote 160 down vote accepted

Unless that value is 0 (in which case you can omit some part of the initializer and the corresponding elements will be initialized to 0), there's no easy way.

Don't overlook the obvious solution, though:

int myArray[10] = { 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 };

Edit:

Elements with missing values will be initialized to 0:

int myArray[10] = { 1, 2 }; //initialize to 1,2,0,0,0...

So this will initialize all elements to 0:

int myArray[10] = { 0 }; //all elements 0

Remember that objects with static storage duration will initialize to 0 if no initializer is specified:

static int myArray[10]; //all elements 0

And that "0" doesn't necessarily mean "all-bits-zero", so using the above is better and more portable than memset(). (Floating point values will be initialized to +0, pointers to null value, etc.)

link|improve this answer
5  
Reading through the C++ standard, you can also do int array[10] = {}; to zero initialise. I don't have the C standard to check this is valid C as well though. – workmad3 Oct 14 '08 at 13:41
6  
Looking at section 6.7.8 Initialization of the C99 standard, it does not appear that an empty initializer list is allowed. – Jonathan Leffler Oct 14 '08 at 13:59
2  
C99 has a lot of nice features for structure and array initialization; the one feature it does not have (but Fortran IV, 1966, had) is a way to repeat a particular initializer for an array. – Jonathan Leffler Oct 14 '08 at 14:00
feedback

If your compiler is GCC you can use following syntax:

int array[1024] = {[0 ... 1023] = 5};

Check out detailed description: http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/Designated-Inits.html

link|improve this answer
feedback

For statically initializing a large array with the same value, without multiple copy-paste, you can use macros:

#define VAL_1X     42
#define VAL_2X     VAL_1X,  VAL_1X
#define VAL_4X     VAL_2X,  VAL_2X
#define VAL_8X     VAL_4X,  VAL_4X
#define VAL_16X    VAL_8X,  VAL_8X
#define VAL_32X    VAL_16X, VAL_16X
#define VAL_64X    VAL_32X, VAL_32X

int myArray[53] = { VAL_32X, VAL_16X, VAL_4X, VAL_1X };

If you need to change the value, you have to do the replacement at only one place.

link|improve this answer
3  
I would only consider this in extreme cases, surely a memset is the more elegant way to express it. – kaizer.se Oct 14 '09 at 10:41
Of course memset() is the way to go. I understood that OP was looking for an alternative. – mouviciel Oct 14 '09 at 11:31
7  
If the data must be ROM-able, memset can not be used. – Amigable Clark Kant Jul 5 '10 at 9:24
2  
Preprocessor will actually generate the code from #defines. With larger array dimensions the executable size will grow. But definitely + for the idea ;) – Leonid Oct 3 '10 at 12:31
2  
memset initializes with a char. It can't be used to init an int array to a value like 42.. The value 0 can be used to init to zero. the value -1 can be used to init the array to -1. – EvilTeach May 8 '11 at 2:45
show 4 more comments
feedback

If you want to ensure that every member of the array is explicitly initialized, just omit the dimension from the declaration:

int myArray[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };

The compiler will deduce the dimension from the initializer list. Unfortunately, for multidimensional arrays only the outermost dimension may be omitted:

int myPoints[][3] = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9} };

is OK, but

int myPoints[][] = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9} };

is not.

link|improve this answer
is this correct ? int myPoints[10][] = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9} }; – Praveen Gowda I V Apr 20 at 12:51
2  
No. You are omitting the innermost dimension, which is not allowed. This will give a compiler error. – Frank Szczerba Apr 20 at 16:22
feedback

You can do the whole static initializer thing as detailed above, but it can be a real bummer when your array size changes (when your array embiggens, if you don't add the appropriate extra initializers you get garbage).

memset gives you a runtime hit for doing the work, but no code size hit done right is immune to array size changes. I would use this solution in nearly all cases when the array was larger than, say, a few dozen elements.

If it was really important that the array was statically declared, I'd write a program to write the program for me and make it part of the build process.

link|improve this answer
feedback
int i;
for (i = 0; i < ARRAY_SIZE; ++i)
{
  myArray[i] = VALUE;
}

I think this is better than

int myArray[10] = { 5, 5, 5, 5, 5, 5, 5, 5, 5, 5...

incase the size of the array changes.

link|improve this answer
2  
For the record, that's basically just a slower, more verbose version of memset(myArray, VALUE, ARRAY_SIZE); – Benson Sep 3 '11 at 19:44
1  
How would you use memset to initialize a int array to some value larger than 255? memset only works if the array is byte sized. – Matt Sep 16 '11 at 17:03
@Benson: You cannot replace the above code with memset on platforms where sizeof(int) > sizeof(char). Try it. – ChrisWue Apr 3 at 19:16
feedback

For initializing 'normal' data types (like int arrays), you can use the bracket notation, but it will zero the values after the last if there is still space in the array:

// put values 1-8, then two zeroes
int list[10] = {1,2,3,4,5,6,7,8};
link|improve this answer
feedback

Here is another way:

static void
unhandled_interrupt(struct trap_frame *frame, int irq, void *arg)
{
    //this code intentionally left blank
}

static struct irqtbl_s vector_tbl[XCHAL_NUM_INTERRUPTS] = {
    [0 ... XCHAL_NUM_INTERRUPTS-1] {unhandled_interrupt, NULL},
};

See:

C-Extensions

Designated inits

Then ask the question: When can one use C extensions?

The code sample above is in an embedded system and will never see the light from another compiler.

link|improve this answer
feedback

If the array happens to be int or anything with the size of int or your mem-pattern's size fits exact times into an int (i.e. all zeroes or 0xA5A5A5A5), the best way is to use memset().

Otherwise call memcpy() in a loop moving the index.

link|improve this answer
feedback

I saw some code that used this syntax:

char* array[] = 
{
    [0] = "Hello",
    [1] = "World"
};   

Where it becomes particularly useful is if you're making an array that uses enums as the index:

enum
{
    ERR_OK,
    ERR_FAIL,
    ERR_MEMORY
};

#define _ITEM(x) [x] = #x

char* array[] = 
{
    _ITEM(ERR_OK),
    _ITEM(ERR_FAIL),
    _ITEM(ERR_MEMORY)
};   

This keeps things in order, even if you happen to write some of the enum-values out of order.

More about this technique can be found here and here.

link|improve this answer
This is C99 initializer syntax, already covered by some of the other answers. You could usefully make the declaration into char const *array[] = { ... }; or even char const * const array[] = { ... };, couldn't you? – Jonathan Leffler Apr 29 at 6:29
feedback

A slightly tongue-in-cheek answer; write the statement

array = initial_value

in your favourite array-capable language (mine is Fortran, but there are many others), and link it to your C code. You'd probably want to wrap it up to be an external function.

link|improve this answer
feedback

You can use memset function.

memset(array,value,sizeofarray);
link|improve this answer
True, but that was mentioned in the question. Also, memset() works bytewise and all bytes must therefore have the same value. Most typically, if you want to initialize things to a non-zero value, the value you want is not 'all bytes the same'. – Jonathan Leffler Apr 29 at 6:27
feedback

I see no requirements in the question, so the solution must be generic: initialization of an unspecified possibly multidimensional array built from unspecified possibly structure elements with an initial member value:

#include <string.h> 

void array_init( void *start, size_t element_size, size_t elements, void *initval ){
  memcpy(        start,              initval, element_size              );
  memcpy( (char*)start+element_size, start,   element_size*(elements-1) );
}

// testing
#include <stdio.h> 

struct s {
  int a;
  char b;
} array[2][3], init;

int main(){
  init = (struct s){.a = 3, .b = 'x'};
  array_init( array, sizeof(array[0][0]), 2*3, &init );

  for( int i=0; i<2; i++ )
    for( int j=0; j<3; j++ )
      printf("array[%i][%i].a = %i .b = '%c'\n",i,j,array[i][j].a,array[i][j].b);
}

Result:

array[0][0].a = 3 .b = 'x'
array[0][1].a = 3 .b = 'x'
array[0][2].a = 3 .b = 'x'
array[1][0].a = 3 .b = 'x'
array[1][1].a = 3 .b = 'x'
array[1][2].a = 3 .b = 'x'

EDIT: start+element_size changed to (char*)start+element_size

link|improve this answer
2  
This is such an old question... – GManNickG Oct 13 '09 at 23:43
But new solution. – sambowry Oct 13 '09 at 23:50
I'm dubious of whether or not this is a solution. I'm not sure whether sizeof(void) is even valid. – Chris Lutz Oct 13 '09 at 23:58
2  
It doesn't work. Only the first two are initialised, the remainder are all uninitialised. I'm using GCC 4.0 on Mac OS X 10.4. – dreamlax Oct 14 '09 at 0:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.