Skip to content

Instantly share code, notes, and snippets.

@nazt
Created July 15, 2009 05:02
Show Gist options
  • Select an option

  • Save nazt/147459 to your computer and use it in GitHub Desktop.

Select an option

Save nazt/147459 to your computer and use it in GitHub Desktop.
#include <stdio.h>
//e
int main()
{
int x;
for(x=1;x<=20;x++)
{
printf("%d \t",x);
if(x%5==0)
printf("\n");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment