Type Here to Get Search Results !

While Loops

The While loop
A while loop is an event controlled loop. It is a control flow statement that, allow the code to be executed repeatedly based on a given condition.
To while construct consists of a block of code and a condition. The condition is evaluated and if the condition is true, the code within the block is executed. This repeats until the condition becomes false.

loop iterations in c language,loop iterations in computer programming in c,jntuh computer programming in c unit 1 notes,computer programming in c lecture notes,computer programming in study material pdf,computer programming in c course file,c language lecture notes,jntuh c language lecture notes pdf,jntu c language syllabus pdf,c language notes pdf,c language study material pdf,estudies,define loop in c language,what are the types of loops in c language,type of loops in computer programming in c,what is pre test loop, what is operation in c language,how to initialize loop in c language,how to update a loop in c, what are the event controlled loops in c,what are counter controlled loops,while loop,for loop,do-while,loops in c,

EXAMPLE 1:
/*Simple while loop that prints numbers 10 per line */
#include<stdio.h> 
int main(void)
{
//local declarations
int num;
int linecount;
//statements
printf("Enter an integer between 1 and 100:");
scanf("%d",&num);  //Initialization 
//Test number
if(num>0)
num=100;
lineCount=0;
while(num>0)
{
if(lineCount<10)
lineCount++;
else
{
printf("\n");
lineCount=1;
} //else
printf("%4d", num--); // num-- updates loop
} //while
return 0;
}

OUTPUT:
Enter an integer between 1 and 100: 15
15 14 13 12 11 10 9 8 7 6 5 4 3 2 1



EXAMPLE 2:
/* Add a list of integers from the standard input unit */
#include<stdio.h>
int main(void)
{
//local declarations
int x;
int sum=0;
//statements
printf("enter your numbers: <EOF> to stop.\n");
while(scanf("%d",&x)!=EOF)
sum+=x;
printf("\n The total is: %d\n",sum);
return 0;
} //end main

Output:
Enter your number: <EOF> to stop
15
22
3^d
The total is: 40

Top Post Ad

Below Post Ad