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 print 999999998500 to 999999998999 number?

–1 vote
asked May 5, 2018 by anonymous
how to print 999999998500 to 999999998999 number?

please give me some code for do this

3 Answers

+2 votes
answered Jun 20, 2018 by anonymous
int main() { for(int i=500;i<1000;i++) printf("999999998%d",i); }
0 votes
answered Jun 22, 2018 by your mom
dont u have any real queation faggot? how jobless are you?
commented Jun 29, 2018 by KAUSTAV (720 points)
A question is a question and besides, how can you know that he is a beginner or an advanced programmer to ask that. Respect the other newbies and who knows, that question asker might become a renowned programmer in future.
0 votes
answered Jun 24, 2018 by mahendra167 (220 points)
#include<stdio.h>

int main()
{
    int a,b,i;
    printf("enter lower limit : ");
    scanf("%d",&a);
    printf("enter upper limit : ");
    scanf("%d",&b);
    for(i=a;i<=b;i++)
    {
        printf(" %d\n",i);
    }
}
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.
...