Code Snippets C

#include
int main(void)
{
int j;
printf("Enter an integer: ");
scanf("%d", &j);
for(; j; j--)
printf("%d ", j);
return 0;
}