while loop não terminará com uma condicional lógica

Esse loop não terminará se eu adicionar uma instrução condicional OR. Se um é falso, então deve terminar.

// global var

int x = 100;
    char *n= malloc (64);

void add(void)
{       

    do      
    {
        printf("Would you like to add 1? (y/n) ");
        fgets(n, 64, stdin);
            //removes newline
        n[strlen(n)-1] = '\0';
            x++;
    }       
//if I add || (x!=100) it keeps looping me even if I press "n"
//otherwise without it it works fine

        while((strncmp(n, "n", 1) != 0) || x!=100 );

        free(n);
}

questionAnswers(5)

yourAnswerToTheQuestion