Programming Tutorials

Comment on Tutorial - Increment and Decrement Operator By aathishankaran



Comment Added by : alistair

Comment Added at : 2012-01-28 06:05:48

Comment on Tutorial : Increment and Decrement Operator By aathishankaran
j = 0;
while(--j)
{
i = 0;
while(--i);
}

CAN I PLEASE know how this loop works and if it does , how many times will it loop. i and j are 8 bits each.
THANK YOU.


View Tutorial