Question 2


main ()
{
    int i = 5;
    while (i)
        i = i - 1;
}

What is the final value of  i

i  =  

SKIP THIS QUESTION