Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

how to find out series of number

0 votes
asked Aug 6, 2019 by kanha navle (120 points)

2 Answers

0 votes
answered Aug 9, 2019 by Loki (1,600 points)
Could you please explain a little what you would like to do?
0 votes
answered Aug 9, 2019 by sidharth jha (140 points)
To find series of N Natural numbers.

We can use the Following code for C Language.

#include<stdio.h>

int main()

{

int i,n;

printf("Enter the Number of terms\n");

scanf("%d",&n);

for(i=1;i<=n;i++)

printf("%d",i);

return 0;

}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...