Question 3


main ()
{
    int i = 1;
    while (12 / i)
        i = i + 3;
}

What is the final value of  i

i  =  

SKIP THIS QUESTION