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