Below is C program for Series Program- 2 15 41 80 132 197 275 366 470 587
Program:
/* Series Program-2 15 41 80 132 197 275 366 470 587 */ int main() { int a=2,i,n=10; for(i=1;i<=n;i++) { printf("%d ",a); a+=13*i; } return 0; }
See Coding offers easy, practical solutions in PHP, CSS, Magento, WordPress, JavaScript, jQuery, and more. Our content is designed to simplify coding concepts, providing tips and step-by-step guides to help developers of all levels enhance their coding skills. With a focus on real-world applications, we cover debugging, optimization, and best practices, keeping you updated on the latest in the field. Whether you’re a beginner or an experienced coder, See Coding is here to support your learning.
No comments:
Post a Comment