while loop

  • C

C Program to Print Natural Numbers from 1 to N In Reverse Order using While loop

Lets write a simple C program to print natural numbers from 1 to N in reverse order, using while loop.…

5 years ago
  • C

C Program to Print Natural Numbers from 1 to N using While loop

Lets write a simple C program to print natural numbers from 1 to N, using while loop. Related Read: while…

5 years ago
  • C

C Program to Find LCM of Two Numbers

Lets write a C program to find Least Common Multiple (LCM) of 2 integer numbers. Related Read: while loop in…

5 years ago
  • C

C Program to Find GCD or HCF of Two Numbers

Lets write a C program to find Greatest Common Divisor(GCD) or the Highest Common Factor(HCF) of 2 integer numbers entered…

5 years ago
  • C

C Program To Find Factorial of a Number

Write a C program to find Factorial of a user input number, using while loop. Related Read: while loop in…

5 years ago