C Programming Code Examples C > Beginners Lab Assignments Code Examples Reverse Counting program in C Reverse Counting program in C Reverse counting is sequence of whole numbers in descending order without zero. Developing a program of counting in C programming language is easy and we shall see here in this chapter. #include <stdio.h> int main() { int j, start, end; start = 1; end = 10; //reverse counting, we'll interchange loop variables for(j = end; j >= start; j--) printf("%2d\n", j); return 0; } procedure counting() FOR value = END to START DO DISPLAY value END FOR end procedure