Answered Questions

  • pre and post increment operators

    why does ++i * ++i give 49 when i=5?

    Pujitha

    • Jun 27th, 2019

    I=5;
    ++i * ++i; (6*7)(if the i is the value 7)
    7*7;
    49

    Ankush Batra

    • Nov 1st, 2018

    The ans is 49 only
    bcoz i cant be 2 values(6, 7) at a time so, i should be 7 at last
    thats why 7*7 = 49.