Ckalari.com is the No.1 website to get the best of C programs, free source codes, projects in c language……
|
A C program to print first 10 numbers By do-while loop
#include<stdio.h>
#include<conio.h>
void main()
{
int i=1;
clrscr();
do
{
printf("%d\n",i);
i=i+1;
}
while(i<=10);
getch();
}
|
|