Posts

Showing posts from February, 2020

Write a program to print out all Armstrong numbers between 1 and 500. If sum of cubes of each digit of the number equal to the number itself, then the number is called an Armstrong number. For example, 153 = (1*1*1)+(5*5*5)+(3*3*3)

Write a c program to print all the ASCII values and their equivalent cha...

Write a C program to find the value of one number raised to the power of...

C program to find the factorial value of any number entered through the ...

Write a c program to calculate overtime pay of 10 employees. | Let Us C|...