I'm on Win10, currently learning C, and I quite don't understand my output (EKEKEKEKE) for a simple exercice that ask for an input and give as output the same string without vowels.
inputBLABLABLA
EKEKEKE
outputB.L.B.L.B.L.
inputBLABLABLA
outputK.K.K.
int main()
{
    for (int i = 0; i < 2; i = i + 1)
    {
        printf("input");
        char titre[101] = {0};
        scanf("%[^\n]\n", titre);
        int j = 0;
        char t = titre[0];
        printf("output");
        while ((t != '\0') && (j < 101))
        {
            if ((t != 'A')
                && (t != 'E')
                && (t != 'I')
                && (t != 'O')
                && (t != 'U')
                && (t != 'Y')
                && (t != ' '))
            {
                printf("%c.", t);
            }
            j = j + 1;
            t = titre[j];
        }
        if (i == 0)
        {
            printf("\n");
        }
    }
}
 
     
    