I have a large array in C (not C++ if that makes a difference). I want to initialize all members of the same value.
I could swear I
example: int array[10]; memset(array,-1, 10 *sizeof(int));