C Code Samples
Find Armstrong Numbers Upto 500 (C code)
Which are armstrong numbers? Numbers whose sum of cube of digits is equal to the number itself. e.g. if we take 153 than 13 =1 53=125 33=27 and sum of all of them is 1+125+27=153 so 153 is a armstrong number. Code in c : #include < stdio.h > #include Read more…