Number Series program 4-C programming
![]() |
Add caption |
In this program, we will see the Number Series program in C programming language. Please look into the program.
2 15 41 80 132 197 275 366 470 587
The C program for the Number Series program is as follows:
#include <stdio.h> int main() { int x=2,i,num=10; for(i=1;i<=num;i++) { printf("%d ",x); x+=13*i; } getch(); return 0; }