Latest Posts

C Program to Find Gcd of Two Numbers using Iterative Euclid’s Algorithm

General Introduction: In one of our previous example, we calculated the gcd of two numbers recursively using Euclid's algorithm. We can also find the gcd...

C Program to Execute Linear Search

General Introduction: Linear search is a searching technique where an element that is to be searched is searched linearly or sequentially. The element to be searched...

Tribhuwan University’s Annual Exam To Be Held After Dashain

The annual examination of Tribhuvan University (TU) will be held only after Dashain says TU. According to Pushparaj Joshi, Controller of Examinations, Examination Control Office,...

Swan Song Summary

The Swan Song is generally the last performance, gesture or work done by the artist in their respective field before dying or getting retirement....

Recursive Program to find the nth term in Fibonacci Series

Fibonacci Series: The Fibonacci series is the special series of the numbers where the next number is obtained by adding the two previous terms. The...

Recursive Program to find the product of two natural numbers

Before I go straight into pseudocode and actual code in C, I just want to explain what are we doing here. So we can...