Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

C program to find gcd of given two numbers using recursion

Categories: Functions. No Comments on C program to find gcd of given two numbers using recursion

In this article we will learn to implement a C program to find gcd of given two numbers using recursion. A C program is provided below to read two numbers and find their GCD.   Program is as follows: /* * C program to find GCD of given two integers using recursive and non-recursive functions […]

Read the rest of this entry »

C program to generate Fibonacci series using recursion

Categories: Functions. No Comments on C program to generate Fibonacci series using recursion

In this article we will learn to implement a C program to generate Fibonacci series using recursion. A C program is provided below to generate a Fibonacci series using both recursive and non-recursive functions.   Program is as follows: /* * C program to generate fibonacci sequence using recursive and non-recursive functions * Author: P.S.SuryaTeja […]

Read the rest of this entry »

C program to demonstrate call by value and call by reference

Categories: Functions. No Comments on C program to demonstrate call by value and call by reference

In this article we will learn to implement a C program to demonstrate call by value and call by reference. A C program is provided below to illustrate how to use call by value and call by reference parameter passing mechanisms in case of functions.   Program is as follows: /* * C program to […]

Read the rest of this entry »