/* Descending sequence. */ #include main () { int count; for (count = 10; count >= 1; count--) { printf("%d\n", count); } }