Code:
#include
Code:
<stdio.h>
int main(){
int x=011,i;
for(i=0;i<x;i+=3){
printf("Start ");
continue;
printf("End");
}
return 0;
}

I know that the output is: Start Start Start

But i don't know how i got to that output. Can some one explain why i got that output?