Do While Loop In C With Example In Hindi

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

  1. While Loop में Condition सबसे पहले Check होती हैं जबकि Do While Loop में Condition , Last में Check होती हैं
  2. 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 करें । सहयोग के लिए आपका बहुत – बहुत धन्यबाद।

You are most welcome to share your comments . If you like this post . Then please share it . Thanks for Reading.
यह भी पढ़ें
  1. C और C++ क्या हैं ?
  2. C या C++ में पहला Program कैसे बनाते हैं ?
  3. Difference Between If And If Else Statement In C
  4. 6 Small And Simple Programs For Beginners
  5. If And If Else Statement in C
  6. If Else Statement in C
  7. Nested If Else Statement In C
  8. Find Out the Largest Value of any given four And Three Numbers in C
  9. Find Out the Largest Value of any given five Numbers in C
  10. Logical Operators In C Programming
  11. For Loop in C Language
  12. Nested For Loop In C With Example
  13. While Loop In C With Example
  14. What is HTML Coding
  15. Web Page कैसे बनाते हैं
  16. HTML Form 
  17. How To Create Table In Html
  18. How To Create Hyperlink In HTML
  19. How To Insert An Image In HTML Page
  20. Ordered And Unordered List In HTML
  21. Frame In HTML Coding
  22. Add Background Color And Image
  23. Map in HTML
  24. Nested List In HTML
  25. How To Create A Website Using HTML Only On Notepad No CSS Used
  26. How TO Create A Beautiful And Simple WebPage Using HTML Only (No CSS Used)