36+ C Basic Coding questions on While loop

36+ C Basic Coding questions on While loop

  1. C program to print all natural numbers from 1 to n using while loop.
  2. C program to print all even numbers between 1 to 100 using while loop.
  3. C program to print all odd number between 1 to 100 using while loop.
  4. C program to print sum of all even numbers between 1 to n using while loop.
  5. C program to print sum of all odd numbers between 1 to n using while loop.
  6. C program to print multiplication/table of any number using while loop.
  7. C program to count the digits of a given number using while loop.
  8. C program to print the sum of digits of a given number using while loop.
  9. C program to print all natural numbers in reverse order using while loop.
  10. C program to check whether a given number is Prime or not using while loop.
  11. C program to print all Prime numbers between 1 to n using while loop.
  12. C program to find sum of all prime numbers between 1 to n using while loop.
  13. C program to check a given number is Armstrong or not using while loop.
  14. C program to print all Armstrong numbers between 1 to n using while loop.
  15. C program to check a given number is Perfect or not using while loop.
  16. C program to check all Perfect numbers between 1 to n using while loop.
  17. C program to check a given number is Strong number or not using while loop.
  18. C program to print all Strong numbers between 1 to n using while loop.
  19. Write a program in C to swap first and last digit of number using while loop.
  20. C Program to swap values using third variable using while loop.
  21. C Program to swap values without using third variable using while loop.
  22. C program to calculate power of a number without using pow method using while loop.
  23. C program to find power of a number without using pow method using while loop.
  24. C program to calculate power of a number using pow method using while loop.
  25. C Program to check number is palindrome or not using while loop.
  26. C Program to print Fibonacci series of a given number using while loop.
  27. C Program to print Fibonacci series of a given number using recursion using while loop.
  28. C Program to print the frequency of digits in given number using while loop.
  29. Write a program in C to print ASCII character with values using while loop.
  30. C program to print all alphabets from a to z using while loop.
  31. C program to print all uppercase alphabets using while loop.
  32. C program to print all lowercase alphabets using while loop.
  33. C program to print all factors of a number using while loop.
  34. C program to print HCF (GCD) of two numbers using while loop.
  35. C program to print LCM of two numbers using while loop.
  36. Write a C program to find all prime factors of a number using while loop.