C Programming

C is a general-purpose, middle-level, compiler-based, and procedure or function-oriented structured programming language. It was developed by Dennis Ritchie at Bell Laboratories in 1972. The main purpose of developing C was to write operating systems.

Related Pages

Fibonacci Series Using Recursion in C

Here, we will write a program to find the Fibonacci series using recursion in C language, and also we will find the nth term of the Fibonacci series. Prerequisites:- Recursion in C Programming Language Another example of recursion is a function that generates Fibonacci numbers. Named after an Italian mathematician, Leonardo Fibonacci, who lived in the

Fibonacci Series Using Recursion in C Read More »

Factorial Using Recursion in C

Here, we will find factorial using recursion in C programming language. Prerequisites:- Recursion in C Programming Language Program description:- Write a C program to find factorial of a number using recursion techniques. Factorial of a number n is given by 1*2*….*(n-1)*n and it’s denoted by n!Example Factorial of 4= 4! = 4*3*2*1 or 1*2*3*4 Generally, Factorial of a

Factorial Using Recursion in C Read More »

Armstrong Number in C

Armstrong number in C | Here we will develop the C program to check number is Armstrong number or not? A positive integer is called Armstrong number of order n if, abcd…. =  an + bn + cn + dn + …. For Example :- 15313 + 53 + 33 = 1 + 125 + 27 = 153So, 153 is an Armstrong number of order

Armstrong Number in C Read More »