This document discusses Armstrong numbers and provides examples and programs to check for Armstrong numbers. It defines an Armstrong number as a number such that the sum of the nth powers of its digits is equal to the number itself, where n is the number of digits. It then provides examples of Armstrong numbers with 1 to 8 digits and lists the 12 Armstrong numbers between 100 and 999. It also includes two C programming language programs, one to check if a single number is Armstrong and another to check and print all Armstrong numbers between 1 and a given limit.