Code Snippets C

#include
int main(void)
{
int x;
for(x = 1; x < 101; x = x + 1)
printf("%d ", x);
return 0;
}