World Top Softwares
Login Please

Join the forum, it's quick and easy

World Top Softwares
Login Please
World Top Softwares
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
 
 

Display results as :
 


Rechercher Advanced Search

Log in

I forgot my password

Latest topics
» Practically as cut-price as files
6th program EmptyMon Aug 01, 2011 11:44 pm by Guest

» Netbook Brands
6th program EmptyMon Aug 01, 2011 5:39 am by Guest

» backlinks checker backlink service
6th program EmptySun Jul 31, 2011 8:56 am by Guest

» how to buy facebook fans f4
6th program EmptySat Jul 30, 2011 2:34 pm by Guest

» Alle bijzondere dingen in de zaanstreek
6th program EmptySat Jul 30, 2011 8:11 am by Guest

» HERE YOU CAN POST ALL WEBSITE LINKS...
6th program EmptyWed Aug 26, 2009 2:16 pm by onesimpletech

» cool web site for all must check it
6th program EmptyMon Jul 06, 2009 2:32 pm by Snopy Cobra

» poetry spirit
6th program EmptyMon Jul 06, 2009 2:31 pm by Snopy Cobra

» best to learn VC++
6th program EmptySun May 10, 2009 3:22 pm by Guest

Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search
Statistics
We have 30 registered users
The newest registered user is deigavr

Our users have posted a total of 191 messages in 126 subjects
Who is online?
In total there is 1 user online :: 0 Registered, 0 Hidden and 1 Guest

None

[ View the whole list ]


Most users ever online was 125 on Wed Apr 07, 2021 9:18 am
RSS feeds


Yahoo! 
MSN 
AOL 
Netvibes 
Bloglines 



6th program

Go down

6th program Empty 6th program

Post by Snopy Cobra Sun Jan 04, 2009 7:39 pm

Lab 06
Objective

Study the function of While Loop.

Theory

“A while loop is a control flow statement that allows code to be executed repeatedly based on a given boolean condition.”
The while construct consists of a block of code and a condition, the condition is evaluated first, if the condition is true the code within the block is then executed. This repeats until the condition becomes false. Because while loops check the condition before the block is executed, the control structure is often also known as a pre-test loop. Compare with the do while loop, which tests the condition after the loop has executed.

1. Write a program that asks the user to input a number greater than 50. If the user inputs a number smaller than 50, the program will end. Otherwise, the program will ask the user again to input a number greater than 50.
Coding

#include<stdio.h>
void main(void)
{
int m;
printf("\nENTER NUMBER GREATER THAN 50\n");
scanf("%d",&m);
while(m>50)
{
printf("\nENTER NUMBER GTREATER 50\n");
scanf("%d",&m);
}
}
Snopy Cobra
Snopy Cobra
Admin
Admin

Number of posts : 99
Age : 34
Location : Bahria University Karachi
Reputation : 0
Registration date : 2008-07-31

https://telecompk.forumotion.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum