Posts

C Program to print the nth term of a series , whose one term is the sum of previous three terms using Recursion - HackerRank

C Program to print the series sum : (X^1 / 1!) - (X^3 / 3!) + (X^5 / 5!) - (X^7 / 7!)......upto n terms

C Program to print the series sum : (1 / 1!) - (2 / 3!) + (3 / 5!)......upto n terms

C Program to print the series sum : (1 / 1!) + (2 / 2!) + (3 / 3!)......upto n terms