#include <stdio.h>
int main()
{
int i;
for(i = 13; i > 1; i-=5)
printf("%d ", i);
printf("\nEnd = %d\n", i);
return 0;
}
References: C From Theory