C Program to print Harshad Numbers in a given range
Harshad(or Niven) Numbers are those integers who are who are divisible by the sum of their digits. The following program prints the Harshad…
Read MoreHarshad(or Niven) Numbers are those integers who are who are divisible by the sum of their digits. The following program prints the Harshad…
Read MoreIn this post I show you how to write a C program that finds the roots(both real and complex) of a quadratic equation.…
Read MoreFactorial is defined for a positive integer, n, as the product of all the integers from 1 to n. Factorial of n is…
Read MoreFibonacci series each member is the sum of the last two terms except the first and second term. The following C program prints…
Read MoreSimpson’s Rule is a Numerical technique to find the definite integral of a function within a given interval. The function is divided into…
Read MoreTrapezoidal Rule is a Numerical technique to find the definite integral of a function. The function is divided into many sub-intervals and each…
Read MoreNewton-Raphson Method, is a Numerical Method, used for finding a root of an equation. The method requires the knowledge of the derivative of…
Read MoreBisection Method, is a Numerical Method, used for finding a root of an equation. The method is based upon bisecting an interval that…
Read MoreX-ray diffraction(XRD) is an important technique for determining the structures of crystals. The theory behind XRD is a result of pioneering works of…
Read MorePythagorean triplets(or triples) consist of three positive integers that satisfy the Pythagorean Theorem, In this post I will show you how to write…
Read More