while loop

  • C

C Program To Re-arrange Even and Odd Elements of An Array

Lets write a C program to re-arrange even and odd elements of an array. Note: We need to arrange EVEN…

4 years ago
  • C

C Program To Print Multiplication Table Using Macros

In this video lets see how we can print multiplication table(from 1 to 10) for any positive user input value,…

4 years ago
  • C

C Program To Find GCD using Repeated Subtraction

Lets write a C program to find Greatest Common Divisor of two positive integer numbers using repeated subtraction. Related Read:…

4 years ago
  • C

C Program To Convert Year To Roman Equivalent

Write a general-purpose function to convert any given year into its Roman equivalent. Use these Roman equivalents for decimal numbers:…

4 years ago
  • C

C Program To Find Sum of Series 1/1! + 2/2! + 3/3! + …. + n/n!

Lets write a C program to add first seven terms of the following series 1 / 1! + 2 /…

4 years ago