12345678910
#include <stdio.h> int main(void) { int i; printf("Enter an integer: "); scanf_s("%d", &i); for (; i; i--) printf("%d ", i); return 0; }