Code Snippets C

#include
int main(void)
{
int x;
for(x = 1; x < 100; x++) {
printf("%d ", x);
if(x == 10)
break; /* exit the for loop */
}
return 0;
}