I have some code as following:
#include <stdio.h>
#include <stdlib.h>
static counter = 0;
static flag = 0;
int main()
{
int number = 3;
int i = 0;
for(i; i< number; i++)
{
if(counter >= number)
{
counter = 0;
flag = 1;
}
counter ++;
printf(" counter = %u\n", counter);
printf(" flag = %u\n", flag);
}
return 0;
}
everytime when the counter reach 3, the flag should be 1, but why when counter reach 3, the flag is still 0?
inever reaches3as per the code. Tryi <= number– Sakthi Kumar Nov 20 '12 at 12:00counter++just next tofor. I mean before theif– Sakthi Kumar Nov 20 '12 at 14:19