Do While Loop In C With Example In Hindi ,
Do While Loop In C With Example In Hindi
While Loop में सबसे पहले Condition Check होती हैं।Condition Check होने के बाद , अगर Condition True होती हैं तभी Program का Control , Loop Body के अंदर Enter कर वहां Define सभी Statements को Check कर उनको Run क़रता हैं और Condition के False होने पर Program का Control , Loop Body के अंदर Enter किये बिना बाहर Exit हो जाता हैं।
मगर Do While Loop में Do Body को पहले लिखा जाता हैं और While Body यानि Condition को बाद में लिखा जाता हैं। इसीलिए Program Execute होते वक्त इसमें सबसे पहले Do Body में Define सभी Statements Check होते हैं और बाद में Condition Check होती हैं।
Condition Check होने के बाद , अगर Condition True होती हैं तो Program का Control , दुबारा Do Body में वापस आ कर Do Body में Define सभी Statements को Check करता हैं और यह Process तब तक चलती रहती हैं जब तक कि Condition False न हो जाय।
Note – Do While Loop को जब भी Execute किया जाता हैं तो Loop एक बार अवश्य Run होता ही होता हैं।
Difference Between While Loop And Do While Loop
- While Loop में Condition सबसे पहले Check होती हैं जबकि Do While Loop में Condition , Last में Check होती हैं
- While Loop , Condition के False होने के बाद एक बार भी Run नही होता हैं जबकि Do While Loop को जब भी Execute किया जाता हैं तो Loop एक बार अवश्य Run होता हैं। चाहे Condition True हो या False क्योंकि इसमें Condition Last में Check होती हैं
Syntax –
do
{
statement 1 ;
statement 2 ;
}
while (expression) ;
Example 1 .
A Program to find out the sum of the given odd numbers.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr() ;
int x , sum , num ;
num=1 ;
cout<<“Enter the number “;
cin>>x ;
sum=0 ;
do
{
sum=sum+num ;
num=num+2 ;
}
while (num<=x) ;
cout<<“Total of all odd numbers “<< sum ;
}
cout<<“\n”
}
getch();
}
Example 2.
Write a program to find out the Sum and Average of the given numbers .
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr() ;
int n , i ;
float av , a , sum ;
cout >>”How many numbers ” ;
cin>>n ;
i=0 ;
sum=0 ;
do
{
cout<<“Enter Numbers “;
cin>>a ;
sum=sum+a ;
i++ ;
}
while (i<=n-1) ;
av=sum/n ;
cout<<“sum of all numbers “<<sum ;
cout<<“Average of all Numbers “<<av ;
}
getch() ;
}
Do While Loop In C With Example In Hindi
“Switch Case Statement In C In Hindi With Example” , Video को हमारे YouTube channel में देखने के लिए इस Link में Click करें । YouTube channel link – (Padhai Ki Batein / पढाई की बातें)
NOTE – Class 8th , 9th , 10th , 11th , 12th के हिन्दी विषय के सभी Chapters से संबंधित videos हमारे YouTube channel (Padhai Ki Batein / पढाई की बातें) पर भी उपलब्ध हैं। कृपया एक बार अवश्य हमारे YouTube channel पर visit करें । सहयोग के लिए आपका बहुत – बहुत धन्यबाद।
- C और C++ क्या हैं ?
- C या C++ में पहला Program कैसे बनाते हैं ?
- Difference Between If And If Else Statement In C
- 6 Small And Simple Programs For Beginners
- If And If Else Statement in C
- If Else Statement in C
- Nested If Else Statement In C
- Find Out the Largest Value of any given four And Three Numbers in C
- Find Out the Largest Value of any given five Numbers in C
- Logical Operators In C Programming
- For Loop in C Language
- Nested For Loop In C With Example
- While Loop In C With Example
- What is HTML Coding
- Web Page कैसे बनाते हैं
- HTML Form
- How To Create Table In Html
- How To Create Hyperlink In HTML
- How To Insert An Image In HTML Page
- Ordered And Unordered List In HTML
- Frame In HTML Coding
- Add Background Color And Image
- Map in HTML
- Nested List In HTML
- How To Create A Website Using HTML Only On Notepad No CSS Used
- How TO Create A Beautiful And Simple WebPage Using HTML Only (No CSS Used)