79 : C Program to print numbers 1 to 10 in reverse order

Check out the complete list of c-programs : C Program List    





We have seen in the previous program what an armstrong number is, now lets print all armstrong numbers between 1 to 999.








/*
 * 1000+ C programs + tutorials
 *
 * 
 * 79_c_program_to_print_armstrong_1_to_10_in_reverse_order.c
 *  
 *  
 *
 *  Created on: Oct 25, 2014
 *  Author: Code2care.org
 */

#include 
//#include 

void main() {

int i;

//clrscr();

printf("\n Print 1 to 10 in reverse order : ");

for(i=10 ; i >=1 ; i--) {

       printf(" %d ", i);
}
 
 
//getch();  
   
 }









The best way to learn C programming is to practice more and more of programs . Code2care C Programming tutorials provide 1000+ programs in C that you can study and become an expert in the language. Programs are divided into categories depending upon type and complexity.

BSc. IT, BSc. Computer Science, BSc. IT, MSc. IT, MSc. Computer Science, MCA, BTech IT & BTech Engineers may find these programs very useful.