Read OnLine C- Program Example

04_LOOP CONCEPT (02_WHILE LOOP)
PRAC 1 PRAC 2
//wap to print 1to10 number
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
clrscr();
i=1;
while (i<11)
{
printf("%d \n",i);
i++;
}
getch();
}
------output------
1
2
3
4
5
6
7
8
9
10
//wap to print 10to1 number
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
clrscr();
i=10;
while (i>=1)
{
printf("%d \n",i);
i--;
}
getch();
}
------output-----
10
9
8
7
6
5
4
3
2
1
Previous Next
Download Download