The following code shows Recursive and Non-Recursive Functions to Show a Sequence in C.
//Examples of recursive and non-recursive functions in C
#include <stdio.h>
void showsequence_recursive(int n)
{
if(n==0)
{
return;
}
else
{
printf("%d ", (n--)*4);
showsequence_recursive(n);
}
}
void showsequence_non_recursive(int n)
{
while(n!=0)
{
printf("%d ", n*4);
n--;
}
}
int main()
{
int n, f, sum, a, b, power;
printf("Enter a number : ");
scanf("%d", &n);
printf("\nSequence using recursive function....\n");
showsequence_recursive(n);
printf("\nSequence using non-recursive function....\n");
showsequence_non_recursive(n);
return 0;
}
Output
Further Reading
50+ C Programming Interview Questions and Answers
C Program to Find Factorial of a Number
- AI
- Android
- Angular
- ASP.NET
- Augmented Reality
- AWS
- Bioinformatics
- Biometrics
- Blockchain
- Bootstrap
- C
- C#
- C++
- Cloud Computing
- Competitions
- Courses
- CSS
- Cyber Security
- Data Science
- Data Structures and Algorithms
- Data Visualization
- Datafication
- Deep Learning
- DevOps
- Digital Forensic
- Digital Trust
- Digital Twins
- Django
- Docker
- Dot Net Framework
- Drones
- Elasticsearch
- ES6
- Extended Reality
- Flutter and Dart
- Full Stack Development
- Git
- Go
- HTML
- Image Processing
- IoT
- IT
- Java
- JavaScript
- Kotlin
- Latex
- Machine Learning
- MEAN Stack
- MERN Stack
- Microservices
- MongoDB
- NodeJS
- PHP
- Power Bi
- Projects
- Python
- Quantum Computing
- React
- Robotics
- Rust
- Scratch 3.0
- Shell Script
- Smart City
- Software
- Solidity
- SQL
- SQLite
- Tecgnology
- Tkinter
- TypeScript
- VB.NET
- Virtual Reality
- Web Designing
- WebAssembly
- XML