C Program To Print First 10 Natural Numbers

July 31, 2024 1 Comment » Hits : 431





C Program to print first 10 Natural Numbers without using Conditional Loop
Using For Loop

#include<stdio.h>
#include<conio.h>
void main()
{
int i=1;
clrscr();
for(i=1;i<=10;i++)
  printf("%d",i);
getch();
}

Using While Loop

#include<stdio.h>
#include<conio.h>
void main()
{
int i=1;
clrscr();
while(i<=10)
  {
  printf("%d",i);
  i++;
  }
getch();
}

Using Do-While Loop

#include<stdio.h>
#include<conio.h>
void main()
{
int i=1;
clrscr();
do{
  printf("%d",i);
  i++;
  }while(i<=10);
getch();
}

Incoming search terms:

  • Emilie Bartone

    he blog was how do i say it… relevant, finally something that helped me. Thanks