'Nesting For loop in c , at i = 4 ; j will be 2 how does it satisfy the condition? [closed]

{
    for (int i = 0; i <= 5; i++)
    {

        for (int j = 5; j >= i; j--)
        {
            printf("+");
        }
        printf("\n");
    }
}

At i = 4; j will be 2 how does it satisfy the condition of j>=i?

c


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source