View on GitHub How to use reverse loop in C Language Reverse For Loop On this page On this page Reverse For Loop Output ❮ Previous Next ❯ Reverse For Loop Program to use Reverse Loop Difference of 2 in C Language #include <stdio.h> int main() { int k; for (k = 10; k >= 2; k -= 2) { printf("%d\t", k); } printf("\n"); return 0; } Output 10 8 6 4 2 ❮ Previous Next ❯