View on GitHub How to use reverse a difference for 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 a Difference For Loop in C Language #include <stdio.h> int main() { int k; for (k = 10; k >= 2; k -= 2) { printf("%d\t", k); } return 0; } Output 10 8 6 4 2 ❮ Previous Next ❯