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.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
how to find out series of number
0
votes
asked
Aug 6, 2019
by
kanha navle
(
120
points)
Please
log in
or register to answer this question.
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?
Please
log in
or register to add a comment.
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;
}
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...