Computer Science, asked by heartnacker7947, 1 year ago

Write a c program to generate the first n terms in the series

Answers

Answered by Deep420plyr
1

Answer:

okay so lets start........

Explanation:

#include<stdio.h>

#include<conio.h>

void main()

{

int n,i;

printf("enter the value of n=");

scanf("%d",&n);

for(i=0;i<=n,i++)

{

printf("generating first n terms= %d,",i);

}

getch();

}

Answered by LilyWhite
6

Answer:

#include<studio.h>

#include<Conio.h>

void main()

{

int n,i;

Printf("enter the value of n=");

Scand("%d",&n);

For(i=0;i<=n,i++)

{

Printf("generating first n terms = %d,",i);

}

{

getch();

}

Similar questions