Please wait...
THANKU FOR BEING A PART OF OUR JOURNEY TO BRING "REVOLUTION IN EDUCATION"
We Genuinely APPRECIATE your PATIENCE

62
M: +3.00/-1.00

What will be the output of the following C code?

main()
{
    int i;
    for(i=0;i<5;i++)
    {
        int i=10;
        printf("%d" , i);
        i++;
    }
    return 0;
}
[ISRO CS May 2017]
A
B
C
D