I want to create a multidimensional array with just two values : 0 or 1.
I use the srand/rand functions but array contains only 0. Here is the code :
#define NB_LINE 4
#define NB_COLUMN 11
int tab[NB_LINE][NB_COLUMN] ; // global variable
void generate() {
srand((unsigned int)time(NULL));
int n, i, j;
for(n = 0; n < NB_LINE*NB_COLUMN; ++n){
do
{
i = rand() % NB_LINE;
j = rand() % NB_COLUMN;
}
while (tab[i][j] != 0);
tab[i][j] = 1 ;
}
}
I don't know how to solve this problem ?
thanks !
Edit : Thanks for your answers. Do you think it's possible with rand() to have juste one "1" per column and others spots contain only 0 ?
n < NB_LINE*NB_COLOMN/2, but that would be the slow way to do it. – Jim Balter May 10 '11 at 0:34