May 22, 2023
program to use while loop is c language
#include <stdio.h>
int main()
{
int i = 1;
while (i <= 10)
{
printf("%d\t", i);
i = i + 1;
}
printf("\n");
return 0;
}
output
1 2 3 4 5 6 7 8 9 10
Steps Description
- Declare integer variable i
- initialize integer variable i=1
- whil (i=5) condition which needs to be evaluated
- printf inbuild function to display the value of %d
- code of instructions which need to be executed
- i++ increment value
by : Ajaj Khan
Quick Summary:
program to use while loop is c language copy #include <stdio.h> int main() { int i = 1; while (i