Skip to content

Instantly share code, notes, and snippets.

@nazt
Created July 15, 2009 04:57
Show Gist options
  • Select an option

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

Select an option

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