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.

c program to print strictly increasing number within 100 (01,12,23…)

+1 vote
asked Nov 30, 2018 by Ashok

2 Answers

0 votes
answered Dec 1, 2018 by vasanthKabali (190 points)
#include<stdio.h>

int main()

{

int i = 0;

while(i <= 100 )

{

printf("%d\n",i);

i++;

}

}
commented Dec 1, 2018 by vasanthKabali (190 points)
that's the solution......
0 votes
answered Dec 2, 2018 by shk sai
#include <stdio.h>

int main()
{
    int start=1,rem,next;
    do
    {
        printf("%02d,",start);
        rem=start%10;
        next=rem+1;
        start=rem*10+next;
    }while((start<100));
    
    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.
...