the second loop is not accessed don't know y?? plz help
Code:
for(i = 0; i < *nbrTwoEppee; i++)
{
//printf("in the firts for");
for(j = i + 1; j < *nbrTwoEppee - 1; j++)
{
printf("in the second for");
if(cond)
{
combOne = oneEppee[i];
combTwo= twoEppee[j];
}
}
}
Comment