Repetition and Loops while do while for continue break
Most programs involve repetition or looping. A loop is a group of instructions the computer executes repeatedly while some loop-continuation condition remains true.
Finding factorial number
Nested loops
infinite loops (loops that do not finish executing)
Factors of a number
Finding power of a number
Finding fibonacci series
Homework Write a program that finds whether a given integer is an Armstrong number: Such as: 153 = 1*1*1 + 5*5*5 + 3*3*3 // 153 is an Armstrong number. 12 is not equal to 1*1*1+2*2*2 // 12 is not an Armstrong number. The program will read the integer from the user and find the result Send the “my_program_e145197.c” file to my email address (tanseldoker@yahoo.com.tr) Until Sunday midnight