Code Snippets C

#include
int main(void)
{
int j;
for(j = 0; j < 100; j++) {
printf("%d ", j);
if(j == 11)
break;
}
return 0;
}